summarylogtreecommitdiffstats
path: root/couchpotato.install
diff options
context:
space:
mode:
Diffstat (limited to 'couchpotato.install')
-rw-r--r--couchpotato.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/couchpotato.install b/couchpotato.install
index 34c1b3c5b073..0f41eab118aa 100644
--- a/couchpotato.install
+++ b/couchpotato.install
@@ -4,8 +4,8 @@ CP_DIR="/opt/couchpotato"
## arg 1: the new package version
post_install() {
- groupadd ${CP_GROUP} &> /dev/null
- useradd -g ${CP_GROUP} -d ${CP_DIR} -s /bin/false ${CP_USER} &> /dev/null
+ getent group ${CP_GROUP} &> /dev/null || groupadd -r ${CP_GROUP} &> /dev/null
+ getent passwd ${CP_USER} &> /dev/null || useradd -r -g ${CP_GROUP} -d ${CP_DIR} -s /usr/bin/nologin ${CP_USER} &> /dev/null
chown -R ${CP_USER}:${CP_GROUP} ${CP_DIR}
echo " >> If you want a custom user or path for CouchPotato, remember to edit the service file as well."
}