diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/init/centos/gogs | 4 | ||||
-rw-r--r-- | scripts/init/debian/gogs | 2 | ||||
-rw-r--r-- | scripts/init/suse/gogs | 4 | ||||
-rw-r--r-- | scripts/systemd/gogs.service | 2 | ||||
-rw-r--r-- | scripts/windows/install-as-service.bat | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/scripts/init/centos/gogs b/scripts/init/centos/gogs index cacf5742..85a8046a 100644 --- a/scripts/init/centos/gogs +++ b/scripts/init/centos/gogs @@ -2,7 +2,7 @@ # # /etc/rc.d/init.d/gogs # -# Runs the Gogs Go Git Service. +# Runs the Gogs # # # chkconfig: - 85 15 @@ -27,7 +27,7 @@ NAME=gogs GOGS_HOME=/home/git/gogs GOGS_PATH=${GOGS_HOME}/$NAME GOGS_USER=git -SERVICENAME="Gogs Go Git Service" +SERVICENAME="Gogs" LOCKFILE=/var/lock/subsys/gogs LOGPATH=${GOGS_HOME}/log LOGFILE=${LOGPATH}/gogs.log diff --git a/scripts/init/debian/gogs b/scripts/init/debian/gogs index 187e23a9..fb00cd51 100644 --- a/scripts/init/debian/gogs +++ b/scripts/init/debian/gogs @@ -15,7 +15,7 @@ # PATH should only include /usr/* if it runs after the mountnfs.sh script PATH=/sbin:/usr/sbin:/bin:/usr/bin -DESC="Go Git Service" +DESC="Gogs" NAME=gogs SERVICEVERBOSE=yes PIDFILE=/var/run/$NAME.pid diff --git a/scripts/init/suse/gogs b/scripts/init/suse/gogs index ea7dfa0a..74c7acbd 100644 --- a/scripts/init/suse/gogs +++ b/scripts/init/suse/gogs @@ -2,7 +2,7 @@ # # /etc/init.d/gogs # -# Runs the Gogs Go Git Service. +# Runs the Gogs # ### BEGIN INIT INFO @@ -21,7 +21,7 @@ NAME=gogs GOGS_HOME=/home/git/gogs GOGS_PATH=${GOGS_HOME}/$NAME GOGS_USER=git -SERVICENAME="Go Git Service" +SERVICENAME="Gogs" LOCKFILE=/var/lock/subsys/gogs LOGPATH=${GOGS_HOME}/log LOGFILE=${LOGPATH}/error.log diff --git a/scripts/systemd/gogs.service b/scripts/systemd/gogs.service index e0db5ecb..77692a1e 100644 --- a/scripts/systemd/gogs.service +++ b/scripts/systemd/gogs.service @@ -1,5 +1,5 @@ [Unit] -Description=Gogs (Go Git Service) +Description=Gogs After=syslog.target After=network.target #After=mysqld.service diff --git a/scripts/windows/install-as-service.bat b/scripts/windows/install-as-service.bat index 09302cc0..1ab4cfd7 100644 --- a/scripts/windows/install-as-service.bat +++ b/scripts/windows/install-as-service.bat @@ -18,7 +18,7 @@ SET gogspath=C:\gogs nssm install gogs "%gogspath%\gogs.exe" nssm set gogs AppParameters "web" nssm set gogs Description "A painless self-hosted Git service." -nssm set gogs DisplayName "Gogs - Go Git Service" +nssm set gogs DisplayName "Gogs" nssm set gogs Start SERVICE_DELAYED_AUTO_START nssm set gogs AppStdout "%gogspath%\gogs.log" nssm start gogs |