#!/bin/sh PATH=/bin:/usr/sbin if [ -z "${WRAP_USER}" ]; then WRAP_USER=nocat fi case $2 in PRE-INSTALL) UID=181 GID=${UID} if [ ! -d "${NOCAT_DIR}" ]; then mkdir -p ${NOCAT_DIR} fi if pw user show "${WRAP_USER}" 2>/dev/null; then echo "You already have a user \"${WRAP_USER}\", so I will use it." if pw usermod ${WRAP_USER} -d ${NOCAT_DIR} then echo "Changed home directory of \"${WRAP_USER}\" to \"${NOCAT_DIR}\"" else "${NOCAT_DIR}\" failed..." exit 1 fi else if pw useradd ${WRAP_USER} -u ${UID} \ -d ${NOCAT_DIR} -s /sbin/nologin -c "NoCat Daemon" then echo "Added user \"${WRAP_USER}\"." else echo "Adding user \"${WRAP_USER}\" failed..." exit 1 fi fi ;; esac Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/devel/jetbrains-clion
Commit message (Expand)AuthorAgeFilesLines
* devel/jetbrains-clion: Update to 2019.2.1swills2019-09-024-40/+38
* devel/jetbrains-clion: Update to 2019.2.1swills2019-09-023-206/+894
* Convert to UCL & cleanup pkg-message (categories d)mat2019-08-141-0/+6
* devel/jetbrains-clion: Update to 2019.1.4swills2019-06-083-7/+7
* devel/jetbrains-clion: Remove unneeded filesswills2019-05-272-3/+5