blob: ea60c9111357283bbb9a171454940d9c8d26d911 (
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
|
#!/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 add a
# shell from /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
# Create $CFG_FILE if needed
if [ ! -f $CFG_FILE ]; then
> $CFG_FILE
fi
grep -qv "^$shl$" $CFG_FILE && echo $shl >> $CFG_FILE
exit 0
|