mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
17 lines
318 B
Bash
17 lines
318 B
Bash
#!/bin/bash
|
|
|
|
#
|
|
# Alice Post Install Hook:
|
|
# Create the required user and set permissions
|
|
#
|
|
|
|
SERVICE=alicelg
|
|
|
|
echo "[i] Post install $SERVICE"
|
|
echo "[i] Creating user and updating permissions"
|
|
useradd --system -d /opt/ecix/$SERVICE $SERVICE
|
|
|
|
echo "[i] Fixing permissions"
|
|
chown -R $SERVICE:$SERVICE /opt/ecix/$SERVICE
|
|
|