Changes of Revision 22
[-] [+] | Changed | config.sh |
@@ -47,7 +47,11 @@ sed --in-place -e 's/# solver.onlyRequires.*/solver.onlyRequires = true/' /etc/zypp/zypp.conf -sed --in-place -e 's/SPLASH="yes"/SPLASH="no"/' /etc/sysconfig/bootsplash +if [ -n "`grep ^SPLASH /etc/sysconfig/bootsplash`" ] ; then + sed --in-place -e 's/SPLASH="yes"/SPLASH="no"/' /etc/sysconfig/bootsplash +else + echo "SPLASH=\"no\"" >> /etc/sysconfig/bootsplash +fi # Enable sshd chkconfig sshd on |