diff options
author | Mohamed Mansour <m0.interactive@gmail.com> | 2012-03-28 12:38:57 -0300 |
---|---|---|
committer | Mohamed Mansour <m0.interactive@gmail.com> | 2012-03-28 12:38:57 -0300 |
commit | cd5825cbb3d04a11d352f0abccea73f834373996 (patch) | |
tree | 8fa0d883487f833ff77a2bdc492d2485f1a49f72 | |
parent | f5432e015d173f2665f7ca34735057e7b2b25d16 (diff) | |
download | gitblit-cd5825cbb3d04a11d352f0abccea73f834373996.tar.gz gitblit-cd5825cbb3d04a11d352f0abccea73f834373996.zip |
Fixes init script for chkconfig.
chkconfig was failing with the following messsage "service gitblit does not support chkconfig"
Adding a description attribute resolves this issue since it is a required chkconfig attribute.
-rw-r--r-- | distrib/gitblit-centos | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/distrib/gitblit-centos b/distrib/gitblit-centos index 387d1fbf..c9fe151e 100644 --- a/distrib/gitblit-centos +++ b/distrib/gitblit-centos @@ -1,5 +1,6 @@ #!/bin/bash # chkconfig: 3 21 91 +# description: Starts and Stops gitblit # Source function library. . /etc/init.d/functions |