Skip to content

Instantly share code, notes, and snippets.

@fsmithred
Created September 14, 2016 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fsmithred/3157ad29e2370ff68c8a647e5062da9f to your computer and use it in GitHub Desktop.
Save fsmithred/3157ad29e2370ff68c8a647e5062da9f to your computer and use it in GitHub Desktop.
#!/bin/sh
## live-config(7) - System Configuration Components
## Copyright (C) 2006-2014 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
## This is free software, and you are welcome to redistribute it
## under certain conditions; see COPYING for details.
#set -e
Cmdline ()
{
# Reading kernel command line
for _PARAMETER in ${LIVE_CONFIG_CMDLINE}
do
case "${_PARAMETER}" in
live-config.username=*|username=*)
LIVE_USERNAME="${_PARAMETER#*username=}"
;;
esac
done
}
Init ()
{
# Checking if package is installed or already configured
if [ ! -e /var/lib/dpkg/info/sysvinit-core.list ] || \
[ -e /var/lib/live/config/sysvinit-core ] || \
[ -e /var/lib/live/config/sysvinit ]
then
exit 0
fi
echo -n " sysvinit-core"
}
Config ()
{
# Disable tmpfs on /tmp
sed -i -e 's|^ *RAMTMP=.*|RAMTMP=no|' /etc/default/rcS
# Configure autologin
if [ "${LIVE_CONFIG_NOAUTOLOGIN}" != "true" ] && [ "${LIVE_CONFIG_NOTTYAUTOLOGIN}" != "true" ]
then
sed -i -e "s|^\([^:]*:[^:]*:[^:]*\):.*getty.*\<\(ttyS\?[0-9]*\).*$|\1:/bin/login -f ${LIVE_USERNAME} </dev/\2 >/dev/\2 2>\&1|" /etc/inittab
init q
fi
# Creating state file
touch /var/lib/live/config/sysvinit-core
}
Cmdline
Init
Config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment