summaryrefslogtreecommitdiffstats
path: root/abs/core/runit-scripts/fbsplash-runit.sh
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2013-12-04 20:25:28 (GMT)
committerBritney Fransen <brfransen@gmail.com>2013-12-04 20:25:28 (GMT)
commitdacae1d9673958dbeceae2ec93758cc3d4b9995e (patch)
treec563a7740326a95663ca3f0dc624108591e28cdb /abs/core/runit-scripts/fbsplash-runit.sh
parent1a88a6987070019e4901e7da132de64ff32d0694 (diff)
downloadlinhes_pkgbuild-dacae1d9673958dbeceae2ec93758cc3d4b9995e.zip
linhes_pkgbuild-dacae1d9673958dbeceae2ec93758cc3d4b9995e.tar.gz
linhes_pkgbuild-dacae1d9673958dbeceae2ec93758cc3d4b9995e.tar.bz2
apcupsd: readd for R8. closes#949.
runit-scripts: add apcupsd
Diffstat (limited to 'abs/core/runit-scripts/fbsplash-runit.sh')
-rwxr-xr-xabs/core/runit-scripts/fbsplash-runit.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/abs/core/runit-scripts/fbsplash-runit.sh b/abs/core/runit-scripts/fbsplash-runit.sh
deleted file mode 100755
index 87435ee..0000000
--- a/abs/core/runit-scripts/fbsplash-runit.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-# fbsplash functions.d runit script #
-
-printhlr() {
- printf "${C_OTHER}${PREFIX_REG} ${C_H1}${1}${C_CLEAR} \n"
- }
-
-stat_runit(){
- printf ""
- printhlr "${C_MAIN}${1}${C_CLEAR} "
-}
-
-
-# splash stuff #
-if [ -e /etc/conf.d/fbcondecor ]
-then
- . /etc/conf.d/fbcondecor
- . /sbin/splash-functions.sh
-
- case $0 in /etc/runit/1 )
- # Prevent splash destruction
- CONSOLEFONT=""
- # Continue to use a splash daemon started in initcpio
- if /bin/mountpoint -q /run/.splash-cache; then
- /bin/mount --move /run/.splash-cache $spl_cachedir || return
- # Mount a tmpfs
- else
- ( splash_cache_prep ) || return
- fi
-
- splash_comm_send set message "$SPLASH_BOOT_MESSAGE"
-
- ;; /etc/runit/3 )
- ( splash_cache_prep ) || return
-
- splash_comm_send set message "$SPLASH_SHUTDOWN_MESSAGE"
- esac
-fi