/lib/live/config.sh is in live-config 3.0~a22-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | #!/bin/sh
## live-config(7) - System Configuration Scripts
## Copyright (C) 2006-2011 Daniel Baumann <daniel@debian.org>
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
##
## On Debian systems, the complete text of the GNU General Public License
## can be found in /usr/share/common-licenses/GPL-3 file.
set -e
# Defaults
LIVE_HOSTNAME="ubuntu"
LIVE_USERNAME="user"
LIVE_USER_FULLNAME="Ubuntu Live user"
Cmdline ()
{
for _PARAMETER in ${_CMDLINE}
do
case "${_PARAMETER}" in
live-config|config)
# Run all scripts
_SCRIPTS="$(ls /lib/live/config/*)"
;;
live-config=*|config=*)
# Only run requested scripts
LIVE_CONFIGS="${_PARAMETER#*config=}"
;;
live-noconfig|noconfig)
# Don't run any script
_SCRIPTS=""
;;
live-noconfig=*|noconfig=*)
# Don't run requested scripts
_SCRIPTS="$(ls /lib/live/config/*)"
LIVE_NOCONFIGS="${_PARAMETER#*noconfig=}"
;;
# Shortcuts
live-config.noroot|noroot)
# Disable root access, no matter what mechanism
_SCRIPTS="${_SCRIPTS:-$(ls /lib/live/config/*)}"
LIVE_NOCONFIGS="${LIVE_NOCONFIGS},sudo,policykit"
;;
live-config.noautologin|noautologin)
# Disables both console and graphical autologin.
_SCRIPTS="${_SCRIPTS:-$(ls /lib/live/config/*)}"
LIVE_NOCONFIGS="${LIVE_NOCONFIGS},sysvinit,gdm,gdm3,kdm,lxdm,nodm,slim,upstart,xinit"
;;
live-config.nottyautologin|nottyautologin)
# Disables console autologin.
_SCRIPTS="${_SCRIPTS:-$(ls /lib/live/config/*)}"
LIVE_NOCONFIGS="${LIVE_NOCONFIGS},sysvinit,upstart"
;;
live-config.nox11autologin|nox11autologin)
# Disables graphical autologin, no matter what
# mechanism
_SCRIPTS="${_SCRIPTS:-$(ls /lib/live/config/*)}"
LIVE_NOCONFIGS="${LIVE_NOCONFIGS},gdm,gdm3,kdm,lxdm,nodm,slim,xinit"
;;
# Special options
live-config.debug|debug)
LIVE_DEBUG="true"
;;
esac
done
# Include requested scripts
if [ -n "${LIVE_CONFIGS}" ]
then
for _CONFIG in $(echo ${LIVE_CONFIGS} | sed -e 's|,| |g')
do
_SCRIPTS="${_SCRIPTS} $(ls /lib/live/config/???-${_CONFIG})"
done
fi
# Exclude requested scripts
if [ -n "${LIVE_NOCONFIGS}" ]
then
for _NOCONFIG in $(echo ${LIVE_NOCONFIGS} | sed -e 's|,| |g')
do
_SCRIPTS="$(echo ${_SCRIPTS} | sed -e "s|$(ls /lib/live/config/???-${_NOCONFIG})||")"
done
fi
}
Trap ()
{
_RETURN="${?}"
case "${_RETURN}" in
0)
;;
*)
echo ":ERROR"
;;
esac
return ${_RETURN}
}
Start_network ()
{
if [ -z "${_NETWORK}" ] && [ -e /etc/init.d/live-config ]
then
/etc/init.d/mountkernfs.sh start > /dev/null 2>&1
/etc/init.d/mountdevsubfs.sh start > /dev/null 2>&1
/etc/init.d/ifupdown-clean start > /dev/null 2>&1
/etc/init.d/ifupdown start > /dev/null 2>&1
/etc/init.d/networking start > /dev/null 2>&1
# Now force adapter up if specified with ethdevice= on cmdline
if [ ! -z "${ETHDEVICE}" ]
then
ifup --force "${ETHDEVICE}"
fi
_NETWORK="true"
export _NETWORK
fi
}
Main ()
{
_CMDLINE="$(cat /proc/cmdline)"
if ! echo ${_CMDLINE} | grep -qs "boot=live"
then
exit 0
fi
echo -n "live-config:"
trap 'Trap' EXIT HUP INT QUIT TERM
# Reading configuration file from filesystem
if [ -e /etc/live/config.conf ]
then
. /etc/live/config.conf
fi
if ls /etc/live/config.d/* > /dev/null 2>&1
then
for _FILE in /etc/live/config.d/*
do
. ${_FILE}
done
fi
# Reading configuration file from live-media
if [ -e /live/image/live/config.conf ]
then
. /live/image/live/config.conf
fi
if ls /live/image/live/config.d/* > /dev/null 2>&1
then
for _FILE in /live/image/live/config.d/*
do
. ${_FILE}
done
fi
# Reading kernel command line
Cmdline
if [ "${LIVE_DEBUG}" = "true" ]
then
set -x
fi
# Configuring system
for _SCRIPT in ${_SCRIPTS}
do
. ${_SCRIPT}
done
echo "."
}
Main
|