blob: 1182fe86ec9d370d51463ae317833386bd7619ea (
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 : Mandriva 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
|