mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-10 07:25:50 +01:00
Some LDAP server do not allow authenticate with unencrypted password.
This patch is adding the StartTLS support which takes care of the
encryption.
In order to enable the StartTLS, go to "System Settings" and select the
"Enable StartTLS" in the Authentication section. Then make sure that you
add your LDAP certificate into the Java keystore:
$ keytool -import \
-file /etc/pki/tls/certs/cacert.pem \
-alias myName \
-keystore /var/lib/gitbucket/keystore
You can list all keys from the keystore like this:
$ keytool -list -keystore /var/lib/gitbucket/keystore
113 lines
1.9 KiB
Bash
113 lines
1.9 KiB
Bash
#!/bin/bash
|
|
#
|
|
# /etc/rc.d/init.d/gitbucket
|
|
#
|
|
# Starts the GitBucket server
|
|
#
|
|
# chkconfig: 345 60 40
|
|
# description: Run GitBucket server
|
|
# processname: java
|
|
|
|
# Source function library
|
|
. /etc/rc.d/init.d/functions
|
|
|
|
# Default values
|
|
GITBUCKET_HOME=/var/lib/gitbucket
|
|
GITBUCKET_WAR_FILE=/usr/share/gitbucket/lib/gitbucket.war
|
|
GITBUCKET_KEYSTORE=/var/lib/gitbucket/keystore
|
|
|
|
# Pull in cq settings
|
|
[ -f /etc/sysconfig/gitbucket ] && . /etc/sysconfig/gitbucket
|
|
|
|
# Location of the log and PID file
|
|
LOG_FILE=/var/log/gitbucket/run.log
|
|
PID_FILE=/var/run/gitbucket.pid
|
|
|
|
# Default return value
|
|
RETVAL=0
|
|
|
|
|
|
start() {
|
|
echo -n $"Starting GitBucket server: "
|
|
|
|
GITBUCKET_JVM_OPTS="${GITBUCKET_JVM_OPTS} -Djavax.net.ssl.trustStore=${GITBUCKET_KEYSTORE}"
|
|
|
|
# Compile statup parameters
|
|
if [ $GITBUCKET_PORT ]; then
|
|
START_OPTS="${START_OPTS} --port=${GITBUCKET_PORT}"
|
|
fi
|
|
if [ $GITBUCKET_PREFIX ]; then
|
|
START_OPTS="${START_OPTS} --prefix=${GITBUCKET_PREFIX}"
|
|
fi
|
|
if [ $GITBUCKET_HOST ]; then
|
|
START_OPTS="${START_OPTS} --host=${GITBUCKET_HOST}"
|
|
fi
|
|
if [ $GITBUCKET_HTTPS ]; then
|
|
START_OPTS="${START_OPTS} --https=true"
|
|
fi
|
|
|
|
# Run the Java process
|
|
GITBUCKET_HOME="${GITBUCKET_HOME}" java $GITBUCKET_JVM_OPTS -jar $GITBUCKET_WAR_FILE $START_OPTS >>$LOG_FILE 2>&1 &
|
|
RETVAL=$?
|
|
|
|
# Store PID of the Java process into a file
|
|
echo $! > $PID_FILE
|
|
|
|
if [ $RETVAL -eq 0 ] ; then
|
|
success "GitBucket startup"
|
|
else
|
|
failure "GitBucket startup"
|
|
fi
|
|
|
|
echo
|
|
return $RETVAL
|
|
}
|
|
|
|
|
|
stop() {
|
|
echo -n $"Stopping GitBucket server: "
|
|
|
|
# Run the Java process
|
|
kill $(cat $PID_FILE 2>/dev/null) >>$LOG_FILE 2>&1
|
|
RETVAL=$?
|
|
|
|
if [ $RETVAL -eq 0 ] ; then
|
|
rm -f $PID_FILE
|
|
success "GitBucket stopping"
|
|
else
|
|
failure "GitBucket stopping"
|
|
fi
|
|
|
|
echo
|
|
return $RETVAL
|
|
}
|
|
|
|
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart)
|
|
restart
|
|
;;
|
|
status)
|
|
status -p $PID_FILE java
|
|
RETVAL=$?
|
|
;;
|
|
*)
|
|
echo $"Usage: $0 [start|stop|restart|status]"
|
|
RETVAL=2
|
|
esac
|
|
|
|
|
|
exit $RETVAL
|