]> git.ipfire.org Git - people/jschlag/ipfire-2.x.git/blobdiff - src/initscripts/init.d/functions
initscripts: functions: Fix indentation
[people/jschlag/ipfire-2.x.git] / src / initscripts / init.d / functions
index ea840d1a56d1decc4c945e1baadb72d3639fed41..58fdffeb4a997220381e7b400211b441aeb38ef4 100644 (file)
@@ -27,7 +27,7 @@ KILLDELAY="10"
 ## Screen Dimensions
 # Find current screen size
 if [ -z "${COLUMNS}" ]; then
-       COLUMNS=$(stty size)
+       COLUMNS=$(stty size 2>/dev/null)
        COLUMNS=${COLUMNS##* }
 fi
 
@@ -438,7 +438,7 @@ loadproc()
 {
        local pidfile=""
        local forcestart=""
-       local nicelevel="10"
+       local nicelevel=""
 
 # This will ensure compatibility with previous LFS Bootscripts
        if [ -n "${PIDFILE}" ]; then
@@ -500,7 +500,13 @@ loadproc()
                esac
        fi
 
-       nice -n "${nicelevel}" "${@}"
+       local cmd="${@}"
+
+       if [ -n "${nicelevel}" ]; then
+               cmd="nice -n "${nicelevel}" ${cmd}"
+       fi
+
+       ${cmd}
        evaluate_retval # This is "Probably" not LSB compliant, but required to be compatible with older bootscripts
        return 0
 }
@@ -696,4 +702,37 @@ run_subdir() {
        done
 }
 
+mem_amount() {
+        local pagesize="$(getconf PAGESIZE)"
+        local pages="$(getconf _PHYS_PAGES)"
+
+        echo "$(( ${pagesize} * ${pages} / 1024 / 1024 ))"
+}
+
+mount_ramdisk() {
+       mount -t tmpfs none $1
+}
+
+umount_ramdisk() {
+       if mountpoint $1 &>/dev/null; then
+               umount $1
+       fi
+}
+
+backup_ramdisk() {
+       if [ ! -e $1.bak ]; then
+               mkdir -p $1.bak
+       fi
+
+       cp -pR $1/* $1.bak/
+       rm -rf $1/*
+}
+
+restore_ramdisk() {
+       if [ -e $1.bak ];then
+               cp -pR $1.bak/* $1/
+               rm -rf $1.bak/*
+       fi
+}
+
 # End $rc_base/init.d/functions