summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/theme/init-hooks/80-after-plugins/theme.sh
diff options
context:
space:
mode:
Diffstat (limited to 'os-plugins/plugins/theme/init-hooks/80-after-plugins/theme.sh')
-rw-r--r--os-plugins/plugins/theme/init-hooks/80-after-plugins/theme.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/os-plugins/plugins/theme/init-hooks/80-after-plugins/theme.sh b/os-plugins/plugins/theme/init-hooks/80-after-plugins/theme.sh
new file mode 100644
index 00000000..5d62b21f
--- /dev/null
+++ b/os-plugins/plugins/theme/init-hooks/80-after-plugins/theme.sh
@@ -0,0 +1,19 @@
+if [ ${theme_nosplash} -eq 0 ]; then
+
+ /bin/splashy_update "progress 80" >/dev/null 2>&1
+
+ # make the splashy_update binary available in stage4 ...
+ mkdir -p /mnt/var/lib/openslx/bin
+ cp -a /bin/splashy_update /mnt/var/lib/openslx/bin
+
+ # ... and create a runlevelscript that will stop splashy somewhere near
+ # the end of stage4
+ d_mkrlscript init splashy.stop "Stopping Splashy ..."
+ echo -e "\t/var/lib/openslx/bin/splashy_update exit 2>/dev/null \
+ \n\ttype killall >/dev/null 2>&1 && killall -9 splashy \
+ \n\trm -f /var/lib/openslx/bin/splashy_update 2>/dev/null" \
+ >>/mnt/etc/${D_INITDIR}/splashy.stop
+ d_mkrlscript close splashy.stop ""
+ D_INITSCRIPTS="${D_INITSCRIPTS} splashy.stop"
+
+fi \ No newline at end of file