summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/theme/init-hooks
diff options
context:
space:
mode:
authorMichael Janczyk2008-04-15 17:45:14 +0200
committerMichael Janczyk2008-04-15 17:45:14 +0200
commita8138e6f68dac34fe2769cde4f9a7b8ccd734241 (patch)
treea4469e212b08b2436d526eb5b93b0e07b4aac383 /os-plugins/plugins/theme/init-hooks
parentVorlage_VMwareImageAdministrator.xml: added tags for printers, shared drives ... (diff)
downloadcore-a8138e6f68dac34fe2769cde4f9a7b8ccd734241.tar.gz
core-a8138e6f68dac34fe2769cde4f9a7b8ccd734241.tar.xz
core-a8138e6f68dac34fe2769cde4f9a7b8ccd734241.zip
removed bootsplash stuff from theme plugin, because of conflicts with bootsplash. didn't remove it until now because one could use it instead of bootsplash and displaymanager plugin but bootsplash doesn't work anymore with the themem plugin. so it had to be removed so bootsplash can be installed.
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1745 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/theme/init-hooks')
-rw-r--r--os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh16
-rw-r--r--os-plugins/plugins/theme/init-hooks/15-have-ip-config/theme.sh1
-rw-r--r--os-plugins/plugins/theme/init-hooks/25-have-network-root/theme.sh1
-rw-r--r--os-plugins/plugins/theme/init-hooks/40-started-hw-config/theme.sh1
-rw-r--r--os-plugins/plugins/theme/init-hooks/50-have-layered-fs/theme.sh1
-rw-r--r--os-plugins/plugins/theme/init-hooks/60-have-servconfig/theme.sh1
-rw-r--r--os-plugins/plugins/theme/init-hooks/70-before-plugins/theme.sh1
-rw-r--r--os-plugins/plugins/theme/init-hooks/80-after-plugins/theme.sh1
-rw-r--r--os-plugins/plugins/theme/init-hooks/99-handing-over/theme.sh1
9 files changed, 0 insertions, 24 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
deleted file mode 100644
index 8fdec8d7..00000000
--- a/os-plugins/plugins/theme/init-hooks/05-have-kernelvars/theme.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-# splashy depends on /proc/fb with VESA
-# only activate with kernel option quiet and no debuglevel
-if grep -E "(VESA|VGA)" /proc/fb > /dev/null 2>&1 \
- && grep -qi " quiet " /proc/cmdline > /dev/null 2>&1 \
- && [ $DEBUGLEVEL -eq 0 ] \
- && [ -e /bin/splashy ] ; then
- export theme_nosplash=0
-else
- export theme_nosplash=1
-fi
-
-if [ ${theme_nosplash} -eq 0 ]; then
- /bin/splashy boot 2>/dev/null
- # add splashy.stop runlevel script
- D_SPLASHY=splashy.stop
-fi
diff --git a/os-plugins/plugins/theme/init-hooks/15-have-ip-config/theme.sh b/os-plugins/plugins/theme/init-hooks/15-have-ip-config/theme.sh
deleted file mode 100644
index cb89362e..00000000
--- a/os-plugins/plugins/theme/init-hooks/15-have-ip-config/theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${theme_nosplash} = 0 ] && /bin/splashy_update "progress 15" >/dev/null 2>&1
diff --git a/os-plugins/plugins/theme/init-hooks/25-have-network-root/theme.sh b/os-plugins/plugins/theme/init-hooks/25-have-network-root/theme.sh
deleted file mode 100644
index 369f8d45..00000000
--- a/os-plugins/plugins/theme/init-hooks/25-have-network-root/theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${theme_nosplash} = 0 ] && /bin/splashy_update "progress 25" >/dev/null 2>&1
diff --git a/os-plugins/plugins/theme/init-hooks/40-started-hw-config/theme.sh b/os-plugins/plugins/theme/init-hooks/40-started-hw-config/theme.sh
deleted file mode 100644
index ac91157f..00000000
--- a/os-plugins/plugins/theme/init-hooks/40-started-hw-config/theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${theme_nosplash} = 0 ] && /bin/splashy_update "progress 40" >/dev/null 2>&1
diff --git a/os-plugins/plugins/theme/init-hooks/50-have-layered-fs/theme.sh b/os-plugins/plugins/theme/init-hooks/50-have-layered-fs/theme.sh
deleted file mode 100644
index 85a8279a..00000000
--- a/os-plugins/plugins/theme/init-hooks/50-have-layered-fs/theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${theme_nosplash} -eq 0 ] && /bin/splashy_update "progress 50" >/dev/null 2>&1
diff --git a/os-plugins/plugins/theme/init-hooks/60-have-servconfig/theme.sh b/os-plugins/plugins/theme/init-hooks/60-have-servconfig/theme.sh
deleted file mode 100644
index 91a0ed45..00000000
--- a/os-plugins/plugins/theme/init-hooks/60-have-servconfig/theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${theme_nosplash} = 0 ] && /bin/splashy_update "progress 60" >/dev/null 2>&1
diff --git a/os-plugins/plugins/theme/init-hooks/70-before-plugins/theme.sh b/os-plugins/plugins/theme/init-hooks/70-before-plugins/theme.sh
deleted file mode 100644
index 170fba3e..00000000
--- a/os-plugins/plugins/theme/init-hooks/70-before-plugins/theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${theme_nosplash} = 0 ] && /bin/splashy_update "progress 70" >/dev/null 2>&1
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
deleted file mode 100644
index 53032caf..00000000
--- a/os-plugins/plugins/theme/init-hooks/80-after-plugins/theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${theme_nosplash} = 0 ] && /bin/splashy_update "progress 80" >/dev/null 2>&1
diff --git a/os-plugins/plugins/theme/init-hooks/99-handing-over/theme.sh b/os-plugins/plugins/theme/init-hooks/99-handing-over/theme.sh
deleted file mode 100644
index 4f01b512..00000000
--- a/os-plugins/plugins/theme/init-hooks/99-handing-over/theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${theme_nosplash} -eq 0 ] && /bin/splashy_update "progress 100" >/dev/null 2>&1