mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
329245f397
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
8 lines
160 B
Bash
8 lines
160 B
Bash
if [ ! -r etc/shells ]; then
|
|
touch etc/shells
|
|
chmod 644 etc/shells
|
|
fi
|
|
|
|
if ! grep -q /bin/loksh etc/shells ; then
|
|
printf %s\\n /bin/loksh >> etc/shells
|
|
fi
|