mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-02 13:04:42 +01:00
c6602e212c
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
8 lines
158 B
Bash
8 lines
158 B
Bash
if [ ! -r etc/shells ]; then
|
|
touch etc/shells
|
|
chmod 644 etc/shells
|
|
fi
|
|
|
|
if ! grep -q /bin/oksh etc/shells ; then
|
|
printf %s\\n /bin/oksh >> etc/shells
|
|
fi
|