added CORS

This commit is contained in:
2026-02-16 23:24:31 +01:00
parent 14b8234e77
commit 58d37b51b7
27 changed files with 80 additions and 32 deletions

4
shadowrun-server.install Normal file
View File

@@ -0,0 +1,4 @@
post_install() {
getent group shadowrun >/dev/null || groupadd -r shadowrun
getent passwd shadowrun >/dev/null || useradd -r -g shadowrun -d /var/lib/shadowrun-server -s /usr/bin/nologin shadowrun
}