Browse Source

Ubuntu/Debian and CentOS/Fedora service tweaks per forum feedback

tags/v1.3.1
James Moger 10 years ago
parent
commit
5392d72bd3

+ 5
- 1
releases.moxie View File

@@ -19,7 +19,9 @@ r18: {
- 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 @@ r18: {
- Dongsu, KIM
- Gareth Collins
- Rafael Cavazin
- Tamás Papp
- Florian Zschocke
}

#

+ 1
- 0
src/main/distrib/linux/service-centos.sh View File

@@ -39,6 +39,7 @@ case "$1" in
force-reload|restart)
$0 stop
sleep 5
$0 start
;;


+ 11
- 2
src/main/distrib/linux/service-ubuntu.sh View File

@@ -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 @@ case "$1" in
force-reload|restart)
$0 stop
sleep 5
$0 start
;;


Loading…
Cancel
Save