f45996c192
* Move remove-extra-packages to post-install since finalise.d is running on the final image and the DIB documentation recommends avoiding unnecessary actions there. * Remove a few packages that used to be removed only for Fedora; do not try to remove those that aren't on the cloud image. * Do all uninstallations in pre-install phase, so that it doesn't try to remove dependencies of already installed packages. * Exclude more locale files from the image. * Exclude the content of /var/log. Change-Id: Idb7819b1d783f4f5f390cc7621019d3be2fa576f
42 lines
1016 B
Bash
Executable File
42 lines
1016 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
DIB_IPA_ENABLE_RESCUE=${DIB_IPA_ENABLE_RESCUE:-true}
|
|
|
|
if $DIB_IPA_ENABLE_RESCUE; then
|
|
# Make sure rescue works
|
|
mkdir -p /etc/ipa-rescue-config
|
|
fi
|
|
|
|
case "$DIB_INIT_SYSTEM" in
|
|
upstart)
|
|
if [ -f /etc/init/ufw.conf ]; then
|
|
mv /etc/init/ufw.conf /etc/init/ufw.conf.disabled
|
|
fi
|
|
if [ -f /etc/init/tgt.conf ]; then
|
|
mv /etc/init/tgt.conf /etc/init/tgt.conf.disabled
|
|
fi
|
|
;;
|
|
systemd)
|
|
if [[ $(systemctl --no-pager list-unit-files iptables) =~ 'enabled' ]]; then
|
|
systemctl disable iptables.service
|
|
fi
|
|
systemctl enable $(svc-map ironic-python-agent).service
|
|
if $DIB_IPA_ENABLE_RESCUE; then
|
|
systemctl enable ironic-agent-create-rescue-user.path
|
|
fi
|
|
;;
|
|
sysv)
|
|
update-rc.d iptables disable
|
|
;;
|
|
*)
|
|
echo "Unsupported init system"
|
|
exit 1
|
|
;;
|
|
esac
|