aboutsummaryrefslogtreecommitdiffstats
path: root/verify-shell
blob: 8b50654b478ed1311c60cc08b7df9d12449318d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
#---------------------------------------------------------------
# Project         : Mageia Linux
# Module          : rpm-helper
# File            : verify-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