fix container removing files, update CHANGELOG

This commit is contained in:
Tobias Powalowski 2022-12-21 07:44:49 +01:00
parent 58f9825455
commit dc042c3522
2 changed files with 8 additions and 4 deletions

View file

@ -14,13 +14,15 @@ Environment changes:
- removed GRAPHIC packages from local image,
new grub respects linux max_initrd_size which is 0x37FFFFF (around 940MB).
- lower RAM requirement for local image to 2.7GB
- removed none working perl and python scripts
- removed network stack from local image pre kexec
- removed bind, dnsmasq, nmap, tcpdump, inetutils, net-tools, b43-fwcutter and wireless_tools
- removed bind, dnsmasq, nmap, tcpdump, inetutils, net-tools, b43-fwcutter,
ntp and wireless_tools
- fixed /etc/request-key.d directory addition
- use systemd defaults for shadow, gshadow and passwd
- disable audit function on boot commandline
- removed xfs_scrub, arpd, archinstall and python
- removed xfs_scrub, arpd, archinstall, python and perl
- replaced nano with micro editor
- replaced vim with neovim editor
setup/quickinst changes:
- check kernel to trigger menu with updating environment
- install vim instead of vi on installed system
@ -29,6 +31,8 @@ setup/quickinst changes:
- reordered manage devices menus
- removed netctl support
- added systemd-networkd, systemd-resolved, iwd support
- replaced nano with micro editor
- replaced vim with neovim editor
---
2022.12 Highlights:
- grub 2:2.06.r380.g151467888-1

View file

@ -61,7 +61,7 @@ _clean_container() {
if [[ "${_CLEANUP_CONTAINER}" == "1" ]]; then
echo "Clean container, delete not needed files from ${1} ..."
rm -r "${1}"/usr/include
rm -r "${1}"/usr/share/{aclocal,applications,audit,awk,bash-completion,common-lisp,emacs,et,fish,gdb,gettext,gettext-[0-9]*,glib-[0-9]*,gnupg,gtk-doc,iana-etc,icons,icu,keyutils,libalpm,libgpg-error,makepkg-template,misc,mkinitcpio,ntp,pixmaps,pkgconfig,readline,screen,smartmontools,ss,tabset,vala,xml,zoneinfo-leaps,man,doc,info,perl[0-9]*,i18n,locale,xtables}
rm -r "${1}"/usr/share/{aclocal,applications,audit,awk,bash-completion,common-lisp,emacs,et,fish,gdb,gettext,gettext-[0-9]*,glib-[0-9]*,gnupg,gtk-doc,iana-etc,icons,icu,keyutils,libalpm,libgpg-error,makepkg-template,misc,mkinitcpio,pixmaps,pkgconfig,readline,screen,smartmontools,ss,tabset,vala,xml,zoneinfo-leaps,man,doc,info,i18n,locale,xtables}
rm -r "${1}"/usr/lib/{audit,awk,bash,binfmt.d,cifs-utils,cmake,coreutils,cryptsetup,dracut,e2fsprogs,engines-[0-9]*,environment.d,gawk,getconf,gettext,girepository-[0-9]*,glib-[0-9]*,gnupg,gssproxy,guile,icu,krb5,ldscripts,libnl,ntfs-3g,pkgconfig,python[0-9]*,rsync,sasl2,siconv,tar,terminfo,xfsprogs,xtables}
fi
}