Update nocodb.sh

test
This commit is contained in:
tteckster 2023-10-21 11:00:50 -04:00 committed by GitHub
parent 1e62c159f1
commit 85cc309f8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 1 deletions

View File

@ -56,9 +56,24 @@ if [[ ! -f /etc/systemd/system/nocodb.service ]]; then msg_error "No ${APP} Inst
msg_info "Updating ${APP}"
systemctl stop nocodb.service
cd /opt/nocodb
rm nocodb
rm -rf nocodb
curl -s http://get.nocodb.com/linux-x64 -o nocodb -L
chmod +x nocodb
cat <<EOF >/etc/systemd/system/nocodb.service"
echo "[Unit]
Description=nocodb
[Service]
Type=simple
Restart=always
User=root
WorkingDirectory=/opt/nocodb
ExecStart=/opt/nocodb/./nocodb
[Install]
WantedBy=multi-user.target
EOF
systemctl daemon-reload
systemctl start nocodb.service
msg_ok "Updated Successfully"
exit