diff options
author | Guillaume Rousse <guillomovitch@mandriva.org> | 2009-03-30 18:28:02 +0000 |
---|---|---|
committer | Guillaume Rousse <guillomovitch@mandriva.org> | 2009-03-30 18:28:02 +0000 |
commit | 842ebc3247c88cd4fe6b70f7717e9bbc4c42e471 (patch) | |
tree | 5e9ba4663decd554cc8e17468c8f874283e6e5c3 | |
parent | f62560eb0e8112f1f5dbf39b2f481ca10a71d78c (diff) | |
download | rpm-helper-842ebc3247c88cd4fe6b70f7717e9bbc4c42e471.tar rpm-helper-842ebc3247c88cd4fe6b70f7717e9bbc4c42e471.tar.gz rpm-helper-842ebc3247c88cd4fe6b70f7717e9bbc4c42e471.tar.bz2 rpm-helper-842ebc3247c88cd4fe6b70f7717e9bbc4c42e471.tar.xz rpm-helper-842ebc3247c88cd4fe6b70f7717e9bbc4c42e471.zip |
fix typos in conditionals
-rwxr-xr-x | add-group | 2 | ||||
-rwxr-xr-x | add-user | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 @@ -21,7 +21,7 @@ name=$3 # name of the user dir=$4 # home directory shell=$5 # shell -if ! id $name /dev/null 2>&1; then +if ! getent passwd $name > /dev/null 2> &1; then /usr/sbin/useradd -r -M \ -s $shell -d $dir -c "system user for $pkg" $name > /dev/null fi |