#!/bin/sh -efu

alterator_api_version=1

. install2-sh-functions
. alterator-sh-functions
. alterator-pkg-functions

on_message()
{
	case "$in_action" in
	write)
		local copy_apt_cache=
		if grep -q installer-livecd-install /usr/share/install2/installer-steps; then
			copy_apt_cache=1
		fi

		pkg_apt_skeleton_init "$copy_apt_cache"
	;;
	esac
}

message_loop
