Skip to content
Snippets Groups Projects
Commit 22b90f4c authored by Bob Mottram's avatar Bob Mottram
Browse files

invert logic

parent a8cf1e9a
No related branches found
No related tags found
No related merge requests found
...@@ -456,14 +456,14 @@ function install_gogs { ...@@ -456,14 +456,14 @@ function install_gogs {
echo "ExecStart=/home/$GOGS_USERNAME/gogs web" >> /etc/systemd/system/gogs.service echo "ExecStart=/home/$GOGS_USERNAME/gogs web" >> /etc/systemd/system/gogs.service
echo 'Restart=always' >> /etc/systemd/system/gogs.service echo 'Restart=always' >> /etc/systemd/system/gogs.service
echo 'RestartSec=10' >> /etc/systemd/system/gogs.service echo 'RestartSec=10' >> /etc/systemd/system/gogs.service
echo "Environment=\"USER=$GOGS_USERNAME\" \"HOME=/home/$GOGS_USERNAME\" \"GOPATH=$GOPATH\" \"GVM_ROOT=$GVM_HOME\"" >> /etc/systemd/system/gogs.service echo "Environment=\"USER=$GOGS_USERNAME\" \"HOME=/home/$GOGS_USERNAME\" \"GOPATH=/home/go/go${GO_VERSION}\"" >> /etc/systemd/system/gogs.service
echo '' >> /etc/systemd/system/gogs.service echo '' >> /etc/systemd/system/gogs.service
echo '[Install]' >> /etc/systemd/system/gogs.service echo '[Install]' >> /etc/systemd/system/gogs.service
echo 'WantedBy=multi-user.target' >> /etc/systemd/system/gogs.service echo 'WantedBy=multi-user.target' >> /etc/systemd/system/gogs.service
systemctl enable gogs systemctl enable gogs
systemctl daemon-reload systemctl daemon-reload
systemctl restart gogs systemctl start gogs
if [ ! -d /var/www/$GIT_DOMAIN_NAME ]; then if [ ! -d /var/www/$GIT_DOMAIN_NAME ]; then
mkdir /var/www/$GIT_DOMAIN_NAME mkdir /var/www/$GIT_DOMAIN_NAME
......
...@@ -197,7 +197,7 @@ function upgrade_golang { ...@@ -197,7 +197,7 @@ function upgrade_golang {
return return
fi fi
if ! grep -Fxq "upgrade_golang:$GO_VERSION" $COMPLETION_FILE; then if grep -Fxq "upgrade_golang:$GO_VERSION" $COMPLETION_FILE; then
return return
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment