mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
11 lines
209 B
Bash
11 lines
209 B
Bash
|
# Add entries to /etc/shells if we need them
|
||
|
if [ ! -r etc/shells ] ; then
|
||
|
touch etc/shells
|
||
|
chmod 644 etc/shells
|
||
|
fi
|
||
|
|
||
|
if ! grep -Fqs "/bin/pdksh" etc/shells ; then
|
||
|
echo "/bin/pdksh" >> etc/shells
|
||
|
fi
|
||
|
|