aboutsummaryrefslogtreecommitdiffstats
path: root/add-group
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@mandriva.org>2009-03-31 13:53:41 +0000
committerGuillaume Rousse <guillomovitch@mandriva.org>2009-03-31 13:53:41 +0000
commit875016b54e6b9b36092dfbfb8c773f6b59264454 (patch)
treeb756e7a8d68f40f9a928e595b131bc04309e476a /add-group
parent8c86439d719fb7e3dcf2bcf59a3b918439afcc8c (diff)
downloadrpm-helper-875016b54e6b9b36092dfbfb8c773f6b59264454.tar
rpm-helper-875016b54e6b9b36092dfbfb8c773f6b59264454.tar.gz
rpm-helper-875016b54e6b9b36092dfbfb8c773f6b59264454.tar.bz2
rpm-helper-875016b54e6b9b36092dfbfb8c773f6b59264454.tar.xz
rpm-helper-875016b54e6b9b36092dfbfb8c773f6b59264454.zip
fix typo introduced by previous release
Diffstat (limited to 'add-group')
-rwxr-xr-xadd-group2
1 files changed, 1 insertions, 1 deletions
diff --git a/add-group b/add-group
index 7a27ed5..603466e 100755
--- a/add-group
+++ b/add-group
@@ -20,7 +20,7 @@ num=$2 # number of packages installed
name=$3 # name of the group
users=$4 # users to add to this group
-if ! getent group $name > /dev/null 2> &1; then
+if ! getent group $name > /dev/null 2>&1; then
/usr/sbin/groupadd -r $name > /dev/null
if [ -n "$users" ]; then