From 245d387c737ba4be367c08c022a39efe513f2059 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 5 Nov 2002 14:20:59 +0000 Subject: add verify-shell --- verify-shell | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 verify-shell (limited to 'verify-shell') 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 " 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 -- cgit v1.2.1