lsgm/live/source/env.sh
2023-11-22 22:56:22 +01:00

66 lines
1.3 KiB
Bash

function env {
action="${1}"
setparams \
'check_squashfs' \
'live_from' \
'pause' \
'time_out'
if [ "${action}" == 'load' ] ; then
load_env \
--file "${env}" \
--skip-sig \
"${@}"
fi
if [ "${action}" == 'save' ] ; then
save_env \
--file "${env}" \
"${@}"
fi
if [ "${action}" == 'set' ] ; then
load_env \
"${@}"
fi
unset action
}
function env_apply {
if [ "${default}" ] ; then
timeout=${time_out}
else
unset timeout
fi
}
function env_default {
if [ "${1}" == 'check_squashfs' ] ; then default="_${check_squashfs}" ; fi
if [ "${1}" == 'live_from' ] ; then default="_${live_from}" ; fi
if [ "${1}" == 'pause' ] ; then default="_${pause}" ; fi
if [ "${1}" == 'time_out' ] ; then default="_${time_out}" ; fi
}
function env_init {
grub_init
env set
env_mod
env load
env_apply
}
function env_list {
list_env \
--skip-sig \
--file "${env}"
}
function env_mod {
env_mod='---'
if [ -f "${env}" ] ; then
env_mod='--x'
if env 'load' ; then
env_mod='r-x'
if env 'save' ; then
env_mod='rwx'
fi
fi
fi
}