diff options
-rw-r--r-- | scripts/init/centos/gogs | 2 | ||||
-rw-r--r-- | scripts/init/debian/gogs | 4 | ||||
-rw-r--r-- | scripts/init/suse/gogs | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/scripts/init/centos/gogs b/scripts/init/centos/gogs index 85a8046a..aeacb8a0 100644 --- a/scripts/init/centos/gogs +++ b/scripts/init/centos/gogs @@ -12,6 +12,8 @@ # Provides: gogs # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog +# Should-Start: mysql postgresql +# Should-Stop: mysql postgresql # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start gogs at boot time. diff --git a/scripts/init/debian/gogs b/scripts/init/debian/gogs index fb00cd51..cc241519 100644 --- a/scripts/init/debian/gogs +++ b/scripts/init/debian/gogs @@ -3,6 +3,8 @@ # Provides: gogs # Required-Start: $syslog $network # Required-Stop: $syslog +# Should-Start: mysql postgresql +# Should-Stop: mysql postgresql # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: A self-hosted Git service written in Go. @@ -122,5 +124,3 @@ case "$1" in exit 3 ;; esac - -: diff --git a/scripts/init/suse/gogs b/scripts/init/suse/gogs index 74c7acbd..85b29116 100644 --- a/scripts/init/suse/gogs +++ b/scripts/init/suse/gogs @@ -9,6 +9,8 @@ # Provides: gogs # Required-Start: $remote_fs # Required-Stop: $remote_fs +# Should-Start: mysql postgresql +# Should-Stop: mysql postgresql # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start gogs at boot time. |