diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-01-14 17:41:50 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-01-14 17:41:50 +0000 |
commit | 78d6fe62edae3419ac3b6f1dde3f6a9b0958a01c (patch) | |
tree | 63ea2e49bb06dfa21127fe53d36302a5eb4c405e | |
parent | When installing package automagically create required user/group if they don't (diff) |
Remove pkg-req - we don't need it anymore.
Submitted by: Joe Marcus Clarke <marcus@marcuscom.com>
Notes
Notes:
svn path=/head/; revision=53063
-rw-r--r-- | x11/gdm/pkg-req | 21 | ||||
-rw-r--r-- | x11/gdm2/pkg-req | 21 |
2 files changed, 0 insertions, 42 deletions
diff --git a/x11/gdm/pkg-req b/x11/gdm/pkg-req deleted file mode 100644 index 22dd46c6f7ad..000000000000 --- a/x11/gdm/pkg-req +++ /dev/null @@ -1,21 +0,0 @@ -if [ "$2" != "INSTALL" ]; then - exit 0 -fi -if ! id -u gdm > /dev/null 2>&1; then - echo "You need an account \"gdm\" to install this package." - echo "Please add it by hand (try \"man vipw\") and try again." - echo "" - echo "An example passwd entry is:" - echo "gdm:*:91:91::0:0:GNOME Display Manager:/nonexistent:/nonexistent" - echo "" - exit 1 -fi -if ! grep -s ^gdm: /etc/group > /dev/null 2>&1; then - echo "You need a group \"gdm\" to install this package." - echo "Please add it by hand and try again." - echo "An example /etc/group entry is:" - echo "gdm:*:91:gdm" - echo "" - exit 1 -fi -exit 0 diff --git a/x11/gdm2/pkg-req b/x11/gdm2/pkg-req deleted file mode 100644 index 22dd46c6f7ad..000000000000 --- a/x11/gdm2/pkg-req +++ /dev/null @@ -1,21 +0,0 @@ -if [ "$2" != "INSTALL" ]; then - exit 0 -fi -if ! id -u gdm > /dev/null 2>&1; then - echo "You need an account \"gdm\" to install this package." - echo "Please add it by hand (try \"man vipw\") and try again." - echo "" - echo "An example passwd entry is:" - echo "gdm:*:91:91::0:0:GNOME Display Manager:/nonexistent:/nonexistent" - echo "" - exit 1 -fi -if ! grep -s ^gdm: /etc/group > /dev/null 2>&1; then - echo "You need a group \"gdm\" to install this package." - echo "Please add it by hand and try again." - echo "An example /etc/group entry is:" - echo "gdm:*:91:gdm" - echo "" - exit 1 -fi -exit 0 |