James Moger
2013-07-22 5392d72bd34dcc63861d0084ebe2529523d4bb5f
Ubuntu/Debian and CentOS/Fedora service tweaks per forum feedback
3 files modified
20 ■■■■ changed files
releases.moxie 6 ●●●● patch | view | raw | blame | history
src/main/distrib/linux/service-centos.sh 1 ●●●● patch | view | raw | blame | history
src/main/distrib/linux/service-ubuntu.sh 13 ●●●● patch | view | raw | blame | history
releases.moxie
@@ -19,7 +19,9 @@
    - Fixed bug with adding new local users with external authentication
    - Fixed missing clone url on the empty repository page
    - Fixed incorrect tagger in the dashboard pages (issue-276)
    changes:
    - Fixed Ubuntu service script for LSB compliance
    - Inserted "sleep 5" in Ubuntu & Centos bash script for service restart
    changes:
    - updated Chinese translation
    - updated Dutch translation
    - updated Spanish translation
@@ -41,6 +43,8 @@
    - Dongsu, KIM
    - Gareth Collins
    - Rafael Cavazin
    - Tamás Papp
    - Florian Zschocke
}
#
src/main/distrib/linux/service-centos.sh
@@ -39,6 +39,7 @@
  
  force-reload|restart)
      $0 stop
      sleep 5
      $0 start
  ;;
src/main/distrib/linux/service-ubuntu.sh
@@ -1,6 +1,14 @@
#!/bin/bash
# chkconfig: 3 21 91
# Source function library.
### BEGIN INIT INFO
# Provides:          gitblit
# Required-Start:    $remote_fs $syslog $network
# Required-Stop:     $remote_fs $syslog $network
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Gitblit repository server
# Description:       Gitblit is a stand-alone service for managing, viewing and serving Git repositories.
### END INIT INFO
. /lib/init/vars.sh
. /lib/lsb/init-functions
@@ -36,6 +44,7 @@
  
  force-reload|restart)
      $0 stop
      sleep 5
      $0 start
  ;;