aboutsummaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2002-01-28 17:50:11 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2002-01-28 17:50:11 +0000
commit5cee31d2620656b0cb2f1a2e896a2844f55d310b (patch)
tree309148a9b2f64d68a5576c3341de9fec869066fb /x11
parent9a411984fc89d6ca1658a7286d178a0f1236b3d4 (diff)
downloadports-5cee31d2620656b0cb2f1a2e896a2844f55d310b.tar.gz
ports-5cee31d2620656b0cb2f1a2e896a2844f55d310b.zip
Notes
Diffstat (limited to 'x11')
-rw-r--r--x11/gdm/pkg-install9
-rw-r--r--x11/gdm2/pkg-install9
2 files changed, 10 insertions, 8 deletions
diff --git a/x11/gdm/pkg-install b/x11/gdm/pkg-install
index 23dd7d7a68c7..56e5a86af3eb 100644
--- a/x11/gdm/pkg-install
+++ b/x11/gdm/pkg-install
@@ -9,11 +9,12 @@ if [ "$2" = "POST-INSTALL" ]; then
GROUP=${USER}
UID=91
GID=${UID}
+ PW=/usr/sbin/pw
- if pw group show "${GROUP}" 2>/dev/null; then
+ if ${PW} group show "${GROUP}" 2>/dev/null; then
echo "You already have a group \"${GROUP}\", so I will use it."
else
- if pw groupadd ${GROUP} -g ${GID}; then
+ if ${PW} groupadd ${GROUP} -g ${GID}; then
echo "Added group \"${GROUP}\"."
else
echo "Adding group \"${GROUP}\" failed..."
@@ -21,10 +22,10 @@ if [ "$2" = "POST-INSTALL" ]; then
fi
fi
- if pw user show "${USER}" 2>/dev/null; then
+ if ${PW} user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
else
- if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
+ if ${PW} useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d "/nonexistent" -s /sbin/nologin -c "GNOME Display Manager"
then
echo "Added user \"${USER}\"."
diff --git a/x11/gdm2/pkg-install b/x11/gdm2/pkg-install
index 23dd7d7a68c7..56e5a86af3eb 100644
--- a/x11/gdm2/pkg-install
+++ b/x11/gdm2/pkg-install
@@ -9,11 +9,12 @@ if [ "$2" = "POST-INSTALL" ]; then
GROUP=${USER}
UID=91
GID=${UID}
+ PW=/usr/sbin/pw
- if pw group show "${GROUP}" 2>/dev/null; then
+ if ${PW} group show "${GROUP}" 2>/dev/null; then
echo "You already have a group \"${GROUP}\", so I will use it."
else
- if pw groupadd ${GROUP} -g ${GID}; then
+ if ${PW} groupadd ${GROUP} -g ${GID}; then
echo "Added group \"${GROUP}\"."
else
echo "Adding group \"${GROUP}\" failed..."
@@ -21,10 +22,10 @@ if [ "$2" = "POST-INSTALL" ]; then
fi
fi
- if pw user show "${USER}" 2>/dev/null; then
+ if ${PW} user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
else
- if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
+ if ${PW} useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d "/nonexistent" -s /sbin/nologin -c "GNOME Display Manager"
then
echo "Added user \"${USER}\"."