Subversion Repositories livecd

Rev

Rev 1 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 14
Line 91... Line 91...
91
if [ $PSI ]; then
91
if [ $PSI ]; then
92
    echo "root" > /etc/security/users
92
    echo "root" > /etc/security/users
93
fi
93
fi
94
 
94
 
95
### set root password again
95
### set root password again
96
[ $SET_ROOTPWD ] && passwd
96
[ "$SET_ROOTPWD" = "yes" ] && passwd
97
[ ! $SET_ROOTPWD ] && echo "Please note: root password is unset, run passwd to set it again."
97
[ "$SET_ROOTPWD" != "yes" ] && echo "Please note: root password is unset, run passwd to set it again."