]> source.dussan.org Git - gitea.git/commitdiff
Fixed project name on scripts
authorAvelino <thiago@avelino.xxx>
Fri, 2 Dec 2016 05:18:58 +0000 (03:18 -0200)
committerAvelino <thiago@avelino.xxx>
Fri, 2 Dec 2016 05:18:58 +0000 (03:18 -0200)
scripts/init/centos/gitea
scripts/init/suse/gitea
scripts/launchd/io.gitea.web.plist
scripts/systemd/gitea.service
scripts/windows/install-as-service.bat

index 77c720271f869b29aa934181f17aff9fb946ff7c..2f8c6da8695d74c0881a8d338ba367ca907baa36 100644 (file)
@@ -2,10 +2,10 @@
 #
 #       /etc/rc.d/init.d/gitea
 #
-#       Runs the Gogs Go Git Service.
-#       
+#       Runs the Gitea Git with a cup of tea.
 #
-# chkconfig:   - 85 15 
+#
+# chkconfig:   - 85 15
 #
 
 ### BEGIN INIT INFO
@@ -27,7 +27,7 @@ NAME=gitea
 GITEA_HOME=/home/git/gitea
 GITEA_PATH=${GITEA_HOME}/$NAME
 GITEA_USER=git
-SERVICENAME="Gogs Go Git Service"
+SERVICENAME="Gitea Git with a cup of tea"
 LOCKFILE=/var/lock/subsys/gitea
 LOGPATH=${GITEA_HOME}/log
 LOGFILE=${LOGPATH}/gitea.log
index 7f7d675aa10e0e6d95ca410a9870fd3b62fa1b1f..56ecc94dec293cb61e723252c8f40deaf6d506d1 100644 (file)
@@ -2,7 +2,7 @@
 #
 #       /etc/init.d/gitea
 #
-#       Runs the Gogs Go Git Service.
+#       Runs the Gitea Git with a cup of tea.
 #
 
 ### BEGIN INIT INFO
@@ -21,7 +21,7 @@ NAME=gitea
 GITEA_HOME=/home/git/gitea
 GITEA_PATH=${GITEA_HOME}/$NAME
 GITEA_USER=git
-SERVICENAME="Go Git Service"
+SERVICENAME="Git with a cup of tea"
 LOCKFILE=/var/lock/subsys/gitea
 LOGPATH=${GITEA_HOME}/log
 LOGFILE=${LOGPATH}/error.log
index 6181ea15cd8d8861465f94982647e1c31a80ea09..43ec612b07f88238b2848c85498003b6e4ab15ab 100644 (file)
@@ -4,7 +4,7 @@
        <dict>
                <key>Label</key>
                <string>io.gitea.web</string>
-               <!-- assumes Gogs is running under 'git' account -->
+               <!-- assumes Gitea is running under 'git' account -->
                <!-- modify below to reflect your settings -->
                <key>UserName</key>
                <string>git</string>
@@ -12,7 +12,7 @@
                <string>git</string>
                <key>ProgramArguments</key>
                <array>
-                       <!-- assumes Gogs is installed in /Users/git/gitea -->
+                       <!-- assumes Gitea is installed in /Users/git/gitea -->
                        <!-- modify below to reflect your settings -->
                        <string>/Users/git/gitea/gitea</string>
                        <string>web</string>
@@ -21,7 +21,7 @@
                <true/>
                <key>KeepAlive</key>
                <true/>
-               <!-- assumes Gogs is installed in /Users/git/gitea -->
+               <!-- assumes Gitea is installed in /Users/git/gitea -->
                <!-- modify below to reflect your settings -->
                <key>WorkingDirectory</key>
                <string>/Users/git/gitea/</string>
@@ -29,7 +29,7 @@
                <string>/Users/git/gitea/log/stdout.log</string>
                <key>StandardErrorPath</key>
                <string>/Users/git/gitea/log/stderr.log</string>
-               <!-- default 256 is too low for Gogs needs using parallel pipes -->
+               <!-- default 256 is too low for Gitea needs using parallel pipes -->
                <key>SoftResourceLimits</key>
                <dict>
                        <key>NumberOfFiles</key>
index 48ef7322f3365ac34d5fc75e9e8fb129ce2fd914..758f1590f1044d0555d859beb28775e786f3db6b 100644 (file)
@@ -1,5 +1,5 @@
 [Unit]
-Description=Gogs (Go Git Service)
+Description=Gitea (Git with a cup of tea)
 After=syslog.target
 After=network.target
 #After=mysqld.service
index 09302cc01d75c1efb4218e4dfd97d3d83c164976..0a7eef9b538d005df22e702ec05eb613a4f397dc 100644 (file)
@@ -6,19 +6,19 @@
 :: https://nssm.cc/download
 :: This script itself should run in the gogs path, too.
 :: In case of startup failure, please read carefully the log file.
-:: Make sure Gogs work running manually with "gogs web" before running
+:: Make sure Gitea work running manually with "gogs web" before running
 :: this script.
 :: And, please, read carefully the installation docs first:
 :: https://gogs.io/docs/installation
 :: To unistall the service, run "nssm remove gogs" and restart Windows.
 
-:: Set the folder where you extracted Gogs. Omit the last slash.
+:: Set the folder where you extracted Gitea. Omit the last slash.
 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 "Gitea - Git with a cup of tea"
 nssm set gogs Start SERVICE_DELAYED_AUTO_START
 nssm set gogs AppStdout "%gogspath%\gogs.log"
 nssm start gogs