add note on swap space for upgrades
This commit is contained in:
parent
c04c9ea296
commit
fbc6ee7443
12
install.bash
12
install.bash
|
@ -23,12 +23,22 @@ ln -sf gitea-$VER /opt/gitea/gitea
|
||||||
sudo wget -O /etc/systemd/system/gitea.service https://git.coolaj86.com/coolaj86/gitea-installer.sh/raw/master/dist/etc/systemd/system/gitea.service
|
sudo wget -O /etc/systemd/system/gitea.service https://git.coolaj86.com/coolaj86/gitea-installer.sh/raw/master/dist/etc/systemd/system/gitea.service
|
||||||
|
|
||||||
# Start gitea
|
# Start gitea
|
||||||
sudo systemctl restart gitea
|
|
||||||
sudo systemctl enable gitea
|
sudo systemctl enable gitea
|
||||||
|
|
||||||
|
## If this is performing an upgrade it may need extra ram for a limited time
|
||||||
|
# fallocate -l 1G /tmp.swap
|
||||||
|
# mkswap /tmp.swap
|
||||||
|
# chmod 0600 /tmp.swap
|
||||||
|
# swapon /tmp.swap
|
||||||
|
sudo systemctl restart gitea
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "Please visit http://localhost:3000/ now to finish installing gitea"
|
echo "Please visit http://localhost:3000/ now to finish installing gitea"
|
||||||
echo ""
|
echo ""
|
||||||
echo "You may customize gitea"
|
echo "You may customize gitea"
|
||||||
echo " templates can be seen at https://github.com/go-gitea/gitea/tree/v$VER/templates"
|
echo " templates can be seen at https://github.com/go-gitea/gitea/tree/v$VER/templates"
|
||||||
echo " app.ini.sample can be seen at https://github.com/go-gitea/gitea/blob/v$VER/custom/conf/app.ini.sample"
|
echo " app.ini.sample can be seen at https://github.com/go-gitea/gitea/blob/v$VER/custom/conf/app.ini.sample"
|
||||||
|
|
||||||
|
# sleep 5
|
||||||
|
# swapoff /tmp.swap
|
||||||
|
# rm /tmp.swap
|
Loading…
Reference in New Issue