summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh
diff options
context:
space:
mode:
authorMichael Janczyk2008-02-15 18:53:47 +0100
committerMichael Janczyk2008-02-15 18:53:47 +0100
commit4ecdf953abc21256fe32bba103c1e6c6bc089d48 (patch)
treee690343ac44b713e372f516e240774b868503737 /os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh
parentClosing ticket #169: (diff)
downloadcore-4ecdf953abc21256fe32bba103c1e6c6bc089d48.tar.gz
core-4ecdf953abc21256fe32bba103c1e6c6bc089d48.tar.xz
core-4ecdf953abc21256fe32bba103c1e6c6bc089d48.zip
test commit, splashy seems to be very picky
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1545 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh')
-rw-r--r--os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh b/os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh
index e2f8f089..440dda12 100644
--- a/os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh
+++ b/os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh
@@ -9,4 +9,11 @@ else
export theme_nosplash=1
fi
-[ ${theme_nosplash} -eq 0 ] && /bin/splashy boot 2>/dev/null
+if [ ${theme_nosplash} -eq 0 ]; then
+ # start splashy
+ /bin/splashy boot 2>/dev/null
+
+ # add splashy.stop (XX_theme) to runlevel scripts
+ echo 'D_INITSCRIPTS="${D_INITSCRIPTS} splashy.stop"' \
+ >> /etc/sysconfig/config
+fi