diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2017-05-09 14:41:41 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2017-05-09 14:41:41 +0000 |
commit | f9daabadad5827d3107fdbd7f1a97d1067ed6bbf (patch) | |
tree | db74aee6644aec7fa5290d14445e5d736672cabb /share | |
parent | Adding upstream version 20170405. (diff) | |
download | open-infrastructure-compute-tools-f9daabadad5827d3107fdbd7f1a97d1067ed6bbf.tar.xz open-infrastructure-compute-tools-f9daabadad5827d3107fdbd7f1a97d1067ed6bbf.zip |
Adding upstream version 20170510.upstream/20170510
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share')
-rw-r--r-- | share/procps/zz-container-tools.conf | 12 | ||||
-rwxr-xr-x | share/scripts/debconf | 12 |
2 files changed, 23 insertions, 1 deletions
diff --git a/share/procps/zz-container-tools.conf b/share/procps/zz-container-tools.conf new file mode 100644 index 0000000..2396dfc --- /dev/null +++ b/share/procps/zz-container-tools.conf @@ -0,0 +1,12 @@ +# The default limits are set to small and eventually lead to errors like +# the following on container start: +# Failed to allocate directory watch: Too many open files + +# /proc/sys/fs/inotify/max_queued_events defaults to 16384 +fs.inotify.max_queued_events=1048576 + +# /proc/sys/fs/inotify/max_user_instances defaults to 128 +fs.inotify.max_user_instances=1048576 + +# /proc/sys/fs/inotify/max_user_watches defaults to 8192 +fs.inotify.max_user_watches=1048576 diff --git a/share/scripts/debconf b/share/scripts/debconf index e4c342e..dee4dcd 100755 --- a/share/scripts/debconf +++ b/share/scripts/debconf @@ -184,9 +184,19 @@ Cleanup_system () { DIRECTORY="${1}" - Chroot "${DIRECTORY}" "apt-get --yes autoremove" + Chroot "${DIRECTORY}" "apt-get --yes --purge autoremove" Chroot "${DIRECTORY}" "apt-get clean" + CRUFT="$(Chroot "${DIRECTORY}" "dpkg --get-selections | awk '/deinstall$/ { print $1 }'")" + + if [ -n "${CRUFT}" ] + then + for PACKAGE in ${CRUFT} + do + Chroot "${DIRECTORY}" "apt-get purge ${PACKAGE}" + done + fi + # Cleanup rm -f "${DIRECTORY}/etc/dpkg/dpkg.cfg.d/container-tools" rm -f "${DIRECTORY}/usr/sbin/policy-rc.d" |