Skip to content

Commit db6a4e9

Browse files
authored
Merge pull request #334 from avelino/scripts_project_name_update
Fixed project name on scripts
2 parents 0f05470 + b21bf80 commit db6a4e9

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

scripts/init/centos/gitea

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
#
33
# /etc/rc.d/init.d/gitea
44
#
5-
# Runs the Gogs Go Git Service.
6-
#
5+
# Runs the Gitea Git with a cup of tea.
76
#
8-
# chkconfig: - 85 15
7+
#
8+
# chkconfig: - 85 15
99
#
1010

1111
### BEGIN INIT INFO
@@ -27,7 +27,7 @@ NAME=gitea
2727
GITEA_HOME=/home/git/gitea
2828
GITEA_PATH=${GITEA_HOME}/$NAME
2929
GITEA_USER=git
30-
SERVICENAME="Gogs Go Git Service"
30+
SERVICENAME="Gitea - Git with a cup of tea"
3131
LOCKFILE=/var/lock/subsys/gitea
3232
LOGPATH=${GITEA_HOME}/log
3333
LOGFILE=${LOGPATH}/gitea.log

scripts/init/suse/gitea

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# /etc/init.d/gitea
44
#
5-
# Runs the Gogs Go Git Service.
5+
# Runs the Gitea Git with a cup of tea.
66
#
77

88
### BEGIN INIT INFO
@@ -21,7 +21,7 @@ NAME=gitea
2121
GITEA_HOME=/home/git/gitea
2222
GITEA_PATH=${GITEA_HOME}/$NAME
2323
GITEA_USER=git
24-
SERVICENAME="Go Git Service"
24+
SERVICENAME="Git - with a cup of tea"
2525
LOCKFILE=/var/lock/subsys/gitea
2626
LOGPATH=${GITEA_HOME}/log
2727
LOGFILE=${LOGPATH}/error.log

scripts/launchd/io.gitea.web.plist

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<dict>
55
<key>Label</key>
66
<string>io.gitea.web</string>
7-
<!-- assumes Gogs is running under 'git' account -->
7+
<!-- assumes Gitea is running under 'git' account -->
88
<!-- modify below to reflect your settings -->
99
<key>UserName</key>
1010
<string>git</string>
1111
<key>GroupName</key>
1212
<string>git</string>
1313
<key>ProgramArguments</key>
1414
<array>
15-
<!-- assumes Gogs is installed in /Users/git/gitea -->
15+
<!-- assumes Gitea is installed in /Users/git/gitea -->
1616
<!-- modify below to reflect your settings -->
1717
<string>/Users/git/gitea/gitea</string>
1818
<string>web</string>
@@ -21,15 +21,15 @@
2121
<true/>
2222
<key>KeepAlive</key>
2323
<true/>
24-
<!-- assumes Gogs is installed in /Users/git/gitea -->
24+
<!-- assumes Gitea is installed in /Users/git/gitea -->
2525
<!-- modify below to reflect your settings -->
2626
<key>WorkingDirectory</key>
2727
<string>/Users/git/gitea/</string>
2828
<key>StandardOutPath</key>
2929
<string>/Users/git/gitea/log/stdout.log</string>
3030
<key>StandardErrorPath</key>
3131
<string>/Users/git/gitea/log/stderr.log</string>
32-
<!-- default 256 is too low for Gogs needs using parallel pipes -->
32+
<!-- default 256 is too low for Gitea needs using parallel pipes -->
3333
<key>SoftResourceLimits</key>
3434
<dict>
3535
<key>NumberOfFiles</key>

scripts/systemd/gitea.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Unit]
2-
Description=Gogs (Go Git Service)
2+
Description=Gitea (Git with a cup of tea)
33
After=syslog.target
44
After=network.target
55
#After=mysqld.service

scripts/windows/install-as-service.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
:: https://nssm.cc/download
77
:: This script itself should run in the gogs path, too.
88
:: In case of startup failure, please read carefully the log file.
9-
:: Make sure Gogs work running manually with "gogs web" before running
9+
:: Make sure Gitea work running manually with "gitea web" before running
1010
:: this script.
1111
:: And, please, read carefully the installation docs first:
1212
:: https://gogs.io/docs/installation
1313
:: To unistall the service, run "nssm remove gogs" and restart Windows.
1414

15-
:: Set the folder where you extracted Gogs. Omit the last slash.
15+
:: Set the folder where you extracted Gitea. Omit the last slash.
1616
SET gogspath=C:\gogs
1717

1818
nssm install gogs "%gogspath%\gogs.exe"
1919
nssm set gogs AppParameters "web"
2020
nssm set gogs Description "A painless self-hosted Git service."
21-
nssm set gogs DisplayName "Gogs - Go Git Service"
21+
nssm set gogs DisplayName "Gitea - Git with a cup of tea"
2222
nssm set gogs Start SERVICE_DELAYED_AUTO_START
2323
nssm set gogs AppStdout "%gogspath%\gogs.log"
2424
nssm start gogs

0 commit comments

Comments
 (0)