Ubuntu/Debian and CentOS/Fedora service tweaks per forum feedback
| | |
| | | - 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) |
| | | - 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 |
| | |
| | | - Dongsu, KIM |
| | | - Gareth Collins |
| | | - Rafael Cavazin |
| | | - Tamás Papp |
| | | - Florian Zschocke |
| | | } |
| | | |
| | | # |
| | |
| | | |
| | | force-reload|restart) |
| | | $0 stop |
| | | sleep 5 |
| | | $0 start |
| | | ;; |
| | | |
| | |
| | | #!/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 |
| | | |
| | |
| | | |
| | | force-reload|restart) |
| | | $0 stop |
| | | sleep 5 |
| | | $0 start |
| | | ;; |
| | | |