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