Works under Ubuntu and Mac OS/X
1 parent a0fbb90 commit 6d200aa3408699a6007577e484deb4fa6e48609e
@Mike Slinn Mike Slinn authored on 29 Jul 2014
Showing 4 changed files
View
12
contrib/README.md
# Contrib Notes #
 
The configuration adapts according to the OS.
Linux directory contains scripts for Ubuntu and RedHat.
The configuration script adapts according to the OS.
The `linux` directory contains scripts for Ubuntu and RedHat.
The Mac scripts have been folded in as well.
Common scripts are in this directory.
 
This version of scripts has so far only been tested on Ubuntu and Mac. Someone else will have to test on RedHat.
 
To run, type:
To run:
1. Edit `gitbucket.conf` to suit.
2. Type: `install`
 
install
View
10
contrib/gitbucket.conf
# Configuration section is below. Ignore this part
 
function isUbuntu {
if [ -f /etc/lsb-release ]; then
grep -i ubuntu /etc/lsb-release | head -n 1 | cut -d \ -f 1 | cut -d = -f 2
fi
 
function isMac {
if [[ "$(uname -a | cut -d \ -f 1 )" == "Darwin" ]]; then echo yes; fi
}
 
#
# Configuration section start
#
 
# Bind host
GITBUCKET_HOST=0.0.0.0
 
 
# GitBucket version to fetch when installing
GITBUCKET_VERSION=2.1
 
#
# End of configuration section. Ignore this part
#
if [ `isUbuntu` ]; then
GITBUCKET_SERVICE=/etc/init.d/gitbucket
elif [ `isRedHat` ]; then
GITBUCKET_SERVICE=/etc/rc.d/init.d
echo "Don't know how to install onto this OS"
exit -2
fi
 
View
3
■■
contrib/gitbucket.init
stop
start
}
 
 
## MacOS proxies for System V service hooks:
StartService() {
start
}
 
esac
exit $RETVAL
fi
 
View
2
■■■
contrib/install
sudo cp gitbucket.init "$GITBUCKET_SERVICE"
# Install gitbucket as a service that starts when system boots
sudo chown root:root $GITBUCKET_SERVICE
sudo chmod 755 $GITBUCKET_SERVICE
sudo update-rc.d $GITBUCKET_SERVICE defaults
sudo update-rc.d "$(basename $GITBUCKET_SERVICE)" defaults
echo "Starting GitBucket service"
sudo $GITBUCKET_SERVICE start
elif [ `isMac` ]; then
sudo macosx/makePlist