mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
7 lines
165 B
Bash
7 lines
165 B
Bash
|
if ! grep zsh etc/shells 1> /dev/null 2> /dev/null; then
|
||
|
echo "/bin/zsh" >> etc/shells
|
||
|
fi
|
||
|
if [ ! -e etc/zprofile ]; then
|
||
|
( cd etc ; ln -sf profile zprofile )
|
||
|
fi
|