mirror of
https://github.com/huo-ju/photoprism-freebsd-port.git
synced 2025-12-10 17:00:22 +01:00
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
USER=photoprism
|
|
GROUP=photoprism
|
|
UID=805
|
|
GID=805
|
|
|
|
if [ "$2" = "PRE-INSTALL" ]; then
|
|
if /usr/sbin/pw groupshow "${GROUP}" >/dev/null 2>&1; then
|
|
echo "Using existing group \"${GROUP}\"."
|
|
else
|
|
if /usr/sbin/pw groupadd ${GROUP} -g ${GID}; then
|
|
echo "Added group \"${GROUP}\"."
|
|
else
|
|
echo "Adding group \"${GROUP}\" failed..."
|
|
echo "Please create it, and try again."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
if /usr/sbin/pw user show "${USER}" >/dev/null 2>&1; then
|
|
echo "Using existing user \"${USER}\"."
|
|
else
|
|
if /usr/sbin/pw useradd ${USER} -u ${UID} -g ${GROUP} -c "photoprism User" -h - -d /nonexistent -s /usr/sbin/nologin ; then
|
|
echo "Added user \"${USER}\"."
|
|
else
|
|
echo "Adding user \"${USER}\" failed..."
|
|
echo "Please create it, and try again."
|
|
exit 1
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
|
echo "${USER}:${GROUP} %%PHOTOPRISM_DATA_DIR%%"
|
|
echo "You may need to run `chown -R ${USER}:${GROUP} %%PHOTOPRISM_DATA_DIR%%`"
|
|
fi
|
|
|