Skip to content

Instantly share code, notes, and snippets.

@jacbeekers
Created June 7, 2015 20:36
Show Gist options
  • Save jacbeekers/21e916a3fb5799973e5f to your computer and use it in GitHub Desktop.
Save jacbeekers/21e916a3fb5799973e5f to your computer and use it in GitHub Desktop.
FitNesse Fixtures snippets
#-
#- The following makes the FitNesse installation bootable
#- Assumptions:
#- 1. You have the shell script 'procFitNesse' - you can get this from github
#- 2. Your user is allowed to sudo - if not, ask your sysadmin (root) to execute the commands
#-
#- copy procFitNesse as fitnesse under init.d
sudo cp -p procFitNesse /etc/init.d/fitnesse
#- root will run this
sudo chown root /etc/init.d/fitnesse
# Make the service script executable
sudo chmod 750 /etc/init.d/fitnesse
# Associate the fitnesse service with the appropriate run levels
#and set it to auto-start using the following command.
sudo chkconfig --add fitnesse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment