/lib/live/config/999-hooks 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  | #!/bin/sh
## live-config(7) - System Configuration Scripts
## Copyright (C) 2006-2011 Daniel Baumann <daniel@debian.org>
##
## live-config 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.
Hooks ()
{
	if [ -z "${LIVE_HOOKS}" ]
	then
		return
	fi
	echo -n " hooks"
	for _PARAMETER in ${_CMDLINE}
	do
		case "${_PARAMETER}" in
			live-config.hooks=*|hooks=*)
				LIVE_HOOKS="${_PARAMETER#*hooks=}"
				;;
		esac
	done
	Process_hooks
}
Process_hooks ()
{
	for _HOOK in $(echo ${LIVE_HOOKS} | sed -e 's/|/ /g')
	do
		case "${_HOOK}" in
			filesystem)
				if ls /lib/live/hooks/* 2>&1
				then
					_HOOKS="${_HOOKS} $(for _FILE in /lib/live/hooks/*; do echo file://${_FILE}; done)"
				fi
				;;
			medium)
				if ls /live/image/live/hooks/* 2>&1
				then
					_HOOKS="${_HOOKS} $(for _FILE in /live/image/live/hooks/*; do echo file://${_FILE}; done)"
				fi
				;;
			*)
				_HOOKS="${_HOOKS} ${_HOOK}"
				;;
		esac
	done
	for _HOOK in ${_HOOKS}
	do
		_TMPFILE="$(mktemp -t live-config.XXXXXXXX)"
		if echo "${_HOOK}" | grep -qs file://
		then
			# local file
			cp $(echo ${_HOOK} | sed 's|file://||') "${_TMPFILE}"
		else
			# remote file
			Start_network
			wget --quiet "${_HOOK}" -O "${_TMPFILE}"
		fi
		chmod 0755 "${_TMPFILE}"
		./"${_TMPFILE}"
		rm -f "${_TMPFILE}"
	done
}
Hooks
 |