nano-run/bundle/debian/postinstall.sh

13 lines
401 B
Bash
Raw Permalink Normal View History

2020-09-10 07:11:34 -03:00
#!/bin/sh
SERVICE="nano-run"
RUNNING_USER="${SERVICE}"
if ! id -u ${RUNNING_USER}; then
echo "Creating user ${RUNNING_USER}..."
useradd -M -c "${RUNNING_USER} dummy user" -r -s /bin/nologin ${RUNNING_USER}
fi
2020-09-11 09:19:33 -03:00
chown -R nano-run:nano-run /var/nano-run/
2020-09-10 07:11:34 -03:00
systemctl enable "${SERVICE}".service || echo "failed to enable service"
systemctl start "${SERVICE}".service || echo "failed to start service"