1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-08-26 20:18:13 +02:00

debian: rename package name to just "thalos"

This commit is contained in:
Henrik Hautakoski 2023-06-15 12:08:39 +02:00
parent d284cfde00
commit 0fe969cc4a
4 changed files with 3 additions and 2 deletions

15
debian/thalos.postinst vendored Normal file
View file

@ -0,0 +1,15 @@
#!/bin/sh
set -e
if [ "$1" = 'configure' ]; then
adduser --force-badname --system --home /nonexistent \
--group --no-create-home --quiet thalos || true
# Create log directory
mkdir -p /var/log/thalos
chown thalos:adm /var/log/thalos
fi
#DEBHELPER#
exit 0