diff options
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | add-shell | 8 | ||||
-rwxr-xr-x | del-shell | 1 | ||||
-rw-r--r-- | rpm-helper.spec | 5 | ||||
-rwxr-xr-x | verify-shell | 31 |
5 files changed, 40 insertions, 7 deletions
@@ -15,7 +15,7 @@ TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__') FILES = AUTHORS README README.CVS COPYING ChangeLog Makefile \ $(PACKAGE).spec $(SCRIPTS) SCRIPTS = add-user del-user add-service del-service create-file \ - add-group del-group add-shell del-shell + add-group del-group add-shell del-shell verify-shell LIBDIR=/usr/share/rpm-helper @@ -7,7 +7,7 @@ # Author : Thierry Vignaud # Created On : Tue Nov 5 13:52:20 2002 # Purpose : helper script for rpm scriptlets to add a -# shell from $CFG_FILE. +# shell from /etc/shells #--------------------------------------------------------------- if [ $# != 3 ]; then @@ -26,7 +26,5 @@ if [ ! -f $CFG_FILE ]; then > $CFG_FILE fi -if [ $num = 1 ]; then - grep -v "^$shl$" && echo $shl >> $CFG_FILE -fi - +grep -qv "^$shl$" $CFG_FILE && echo $shl >> $CFG_FILE +exit 0
\ No newline at end of file @@ -34,3 +34,4 @@ if [ "$num" = 0 ]; then fi fi +exit 0
\ No newline at end of file diff --git a/rpm-helper.spec b/rpm-helper.spec index cca2928..a426d0c 100644 --- a/rpm-helper.spec +++ b/rpm-helper.spec @@ -10,7 +10,7 @@ Summary: Helper scripts for rpm scriptlets Name: rpm-helper -Version: 0.7 +Version: 0.7.1 Release: 1mdk Source0: %name-%version.tar.bz2 License: GPL @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %_datadir/%name %changelog +* Tue Nov 5 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 0.7.1-1mdk +- add verify-shell + * Tue Nov 5 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 0.7-1mdk - add add-shell and del-shell to update /etc/shells diff --git a/verify-shell b/verify-shell new file mode 100755 index 0000000..2b03221 --- /dev/null +++ b/verify-shell @@ -0,0 +1,31 @@ +#!/bin/sh +#--------------------------------------------------------------- +# Project : Mandrake Linux +# Module : rpm-helper +# File : add-shell +# Version : $Id$ +# Author : Thierry Vignaud +# Created On : Tue Nov 5 13:52:20 2002 +# Purpose : helper script for rpm scriptlets to check a +# shell is in /etc/shells +#--------------------------------------------------------------- + +if [ $# != 3 ]; then + echo "usage: $0 <pkg name> <number installed> <shell name>" 1>&2 + exit 1 +fi + +pkg=$1 # name of the package +num=$2 # number of packages installed +shl=$3 # name of the shell + +CFG_FILE=/etc/shells + + +echo -n "Looking for $shl in /etc/shells... " +if ! grep "^/bin/${shl}\$" /etc/shells > /dev/null; then + echo "missing" + echo "${shl} missing from /etc/shells" >&2 +else + echo "found" +fi
\ No newline at end of file |