Merge branch 'main' into mod-panel

This commit is contained in:
jvyden 2022-06-17 19:55:15 -04:00
commit f40c6ce894
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
27 changed files with 150 additions and 151 deletions

View file

@ -1,3 +1,4 @@
#!/bin/sh
# Build script for production
#
# No arguments

View file

@ -1,3 +1,4 @@
#!/bin/sh
# Startup script for production
#
# $1: Server to start; case sensitive!!!!!

View file

@ -0,0 +1,12 @@
#!/bin/sh
# Update script for production
#
# No arguments
# Called manually
sudo systemctl stop project-lighthouse*
cd /srv/lighthouse || return
sudo -u lighthouse -i /srv/lighthouse/build.sh
sudo systemctl start project-lighthouse*