2017-10-27 23:57:22 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-06-24 03:44:29 +00:00
|
|
|
VER=1.4.2
|
2018-03-26 06:48:25 +00:00
|
|
|
|
2017-10-27 23:58:51 +00:00
|
|
|
# wget -O install-gitea.bash https://git.coolaj86.com/coolaj86/gitea-installer/raw/master/install.bash; bash install-gitea.bash
|
2017-10-28 00:09:04 +00:00
|
|
|
# or
|
2017-10-27 23:57:22 +00:00
|
|
|
# wget -O - https://git.coolaj86.com/coolaj86/gitea-installer/raw/master/install.bash | bash
|
|
|
|
|
2017-10-28 00:09:04 +00:00
|
|
|
# Create a 'gitea' user and group with the home /opt/gitea, no password (because it's a system user) and no GECOS
|
|
|
|
sudo adduser gitea --home /opt/gitea --disabled-password --gecos ''
|
2017-10-27 23:57:22 +00:00
|
|
|
|
|
|
|
# Make some other potentially useful directories for that user/group
|
|
|
|
sudo mkdir -p /opt/gitea/ /var/log/gitea
|
|
|
|
sudo chown -R gitea:gitea /opt/gitea/ /var/log/gitea
|
|
|
|
|
|
|
|
# Download and install gitea
|
2018-06-24 03:57:23 +00:00
|
|
|
|
|
|
|
# Check if architecure is x86 and download Gitea
|
|
|
|
if [ -n "$(uname -a | grep x86_64)" ]; then
|
2018-06-24 04:02:45 +00:00
|
|
|
sudo wget -O "/opt/gitea/gitea-$VER" "https://dl.gitea.io/gitea/$VER/gitea-$VER-linux-amd64"
|
2018-06-24 03:57:23 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Check if architecure is ARMv7 and download Gitea
|
|
|
|
if [ -n "$(uname -a | grep armv7l)" ]; then
|
|
|
|
sudo wget -O "/opt/gitea/gitea-$VER" "https://dl.gitea.io/gitea/$VER/gitea-$VER-linux-arm-7"
|
|
|
|
fi
|
|
|
|
|
2018-04-19 05:14:46 +00:00
|
|
|
sudo chmod +x /opt/gitea/gitea-$VER
|
|
|
|
rm -f /opt/gitea/gitea
|
|
|
|
ln -sf gitea-$VER /opt/gitea/gitea
|
2017-10-27 23:57:22 +00:00
|
|
|
|
|
|
|
# Download and install the gitea.service for systemd
|
2017-11-10 17:47:44 +00:00
|
|
|
sudo wget -O /etc/systemd/system/gitea.service https://git.coolaj86.com/coolaj86/gitea-installer.sh/raw/master/dist/etc/systemd/system/gitea.service
|
2017-10-27 23:57:22 +00:00
|
|
|
|
|
|
|
# Start gitea
|
2018-04-19 05:14:46 +00:00
|
|
|
sudo systemctl enable gitea
|
2017-10-27 23:58:51 +00:00
|
|
|
|
2018-04-19 05:25:22 +00:00
|
|
|
## 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
|
|
|
|
|
2018-06-04 20:03:40 +00:00
|
|
|
set +e
|
|
|
|
my_ip=$(ifconfig | grep inet | grep Mask | grep -v ':127\\.0\\.0\\.1' | grep -v ':192\\.168' | grep -v ':10\\.' | head -n 1 | cut -f 2 -d ':' | cut -f 1 -d ' ')
|
|
|
|
my_ip=${my_ip:-localhost}
|
|
|
|
set -e
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
echo ""
|
|
|
|
echo "###########################"
|
|
|
|
echo "# Time to Configure #"
|
|
|
|
echo "###########################"
|
|
|
|
echo ""
|
|
|
|
echo "Just a few more steps to complete at the setup URL:"
|
|
|
|
echo ""
|
2018-06-04 20:52:26 +00:00
|
|
|
echo " http://$my_ip:3000/"
|
2018-06-04 20:03:40 +00:00
|
|
|
echo ""
|
|
|
|
echo "Future changes can be made by editing the config file:"
|
|
|
|
echo ""
|
2018-06-04 20:52:26 +00:00
|
|
|
echo " /opt/gitea/custom/conf/app.ini"
|
2018-06-04 20:03:40 +00:00
|
|
|
echo ""
|
|
|
|
echo ""
|
|
|
|
echo "P.S. Would you like to customize Gitea?"
|
|
|
|
echo ""
|
2018-06-04 20:52:26 +00:00
|
|
|
echo " Read basic instructions:"
|
|
|
|
echo " https://git.coolaj86.com/coolaj86/gitea-installer.sh/_edit/master/install.bash"
|
2018-03-26 06:48:25 +00:00
|
|
|
echo ""
|
2018-06-04 20:52:26 +00:00
|
|
|
echo " View current templates:"
|
|
|
|
echo " https://github.com/go-gitea/gitea/tree/v$VER/templates"
|
2018-06-04 20:06:14 +00:00
|
|
|
echo ""
|
2018-06-04 20:52:26 +00:00
|
|
|
echo " See a sample app.ini:"
|
|
|
|
echo " https://github.com/go-gitea/gitea/blob/v$VER/custom/conf/app.ini.sample"
|
2018-03-26 06:48:25 +00:00
|
|
|
echo ""
|
2018-04-19 05:25:22 +00:00
|
|
|
|
|
|
|
# sleep 5
|
|
|
|
# swapoff /tmp.swap
|
2018-06-24 03:44:29 +00:00
|
|
|
# rm /tmp.swap
|