| | # 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 |
---|
| | |
---|
| | |
---|
| | |