diff options
-rwxr-xr-x | functions/defaults.sh | 6 | ||||
-rwxr-xr-x | share/hooks/0110-remove-mdadm-configuration.chroot | 7 |
2 files changed, 11 insertions, 2 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 03d8069e9..8d18d449f 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -630,7 +630,8 @@ Set_defaults () remove-openssh-server-host-keys \ remove-python-py \ remove-udev-persistent-rules \ - remove-linux-image-backups}" + remove-linux-image-backups \ + remove-mdadm-configuration}" ;; kubuntu) @@ -642,7 +643,8 @@ Set_defaults () remove-openssh-server-host-keys \ remove-python-py \ remove-udev-persistent-rules \ - remove-linux-image-backups}" + remove-linux-image-backups \ + remove-mdadm-configuration}" ;; esac diff --git a/share/hooks/0110-remove-mdadm-configuration.chroot b/share/hooks/0110-remove-mdadm-configuration.chroot new file mode 100755 index 000000000..206b494da --- /dev/null +++ b/share/hooks/0110-remove-mdadm-configuration.chroot @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e + +# Remove generated files + +rm -f /etc/mdadm/mdadm.conf |