Updating to include systemd timers

Better Makefile layout
Improving pytest
This commit is contained in:
2023-07-15 22:34:00 -05:00
parent 49f9f6d315
commit 3b49a6c49e
12 changed files with 123 additions and 87 deletions

9
installscript Normal file
View File

@@ -0,0 +1,9 @@
pre_install() {
groupadd aether &>/dev/null
useradd -g aether -d /srv/aether -s /bin/false aether &> /dev/null
chown -R aether:aether /srv/aether &> /dev/null
}
pre_remove() {
getent passwd aether &>/dev/null && userdel aether &> /dev/null
}