diff options
Diffstat (limited to 'system/yash/doinst.sh')
-rw-r--r-- | system/yash/doinst.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/system/yash/doinst.sh b/system/yash/doinst.sh new file mode 100644 index 0000000000..0c3b7b70e9 --- /dev/null +++ b/system/yash/doinst.sh @@ -0,0 +1,8 @@ +if [ ! -r etc/shells ]; then + touch etc/shells + chmod 644 etc/shells +fi + +if ! grep -q /bin/yash etc/shells ; then + printf %s\\n /bin/yash >> etc/shells +fi |