update CHANGELOG

This commit is contained in:
Tobias Powalowski 2023-09-09 10:56:25 +02:00
parent 626a1d1809
commit 2360fe61fe
3 changed files with 6 additions and 8 deletions

View file

@ -9,7 +9,7 @@ Environment:
- code cleanup removed presets/*,
KERNEL is now set in /etc/archboot/*.conf
- better progressbar timings
- removed wget, traceroute
- removed rpcbind, traceroute, wget
- updated not installed packages
- added complete package list to Release.txt
config:

View file

@ -203,7 +203,7 @@ build ()
libbsd libmd libpcap libnftnl libnfnetlink libnetfilter_conntrack libsasl libldap memtest86+ \
memtest86+-efi mkinitcpio-busybox mtools libsysprof-capture libnsl libksba gdbm binutils \
cdrtools systemd-ukify python python-pefile limine man-pages libev libpipeline groff \
man-db texinfo db db5.3 gc"
man-db texinfo db db5.3 gc rpcbind"
for i in ${_RM_PACMAN_DB}; do
rm -rf "${BUILDROOT}"/var/lib/pacman/local/"${i}"-*-[0-9]* &>"${_NO_LOG}"
done

View file

@ -6,11 +6,11 @@ build ()
{
map add_binary findssl.sh scp sftp ssh-add ssh-agent ssh-copy-id ssh-keygen ssh-keyscan sshd \
exportfs nfsstat rpc.idmapd rpc.mountd rpc.nfsd rpc.statd rpcdebug showmount \
sm-notify start-statd rpcbind rpcinfo rpc.gssd \
sm-notify start-statd rpc.gssd \
nfsdcltrack gssproxy screen tmux rsync ttyd
map add_file /etc/screenrc /etc/ssh/ssh_config /etc/ssh/sshd_config /etc/ssh/moduli \
/etc/rsyncd.conf /etc/exports /usr/lib/ssh/sftp-server /usr/lib/ssh/ssh-keysign \
/usr/lib/ssh/ssh-pkcs11-helper /etc/conf.d/rpcbind \
/usr/lib/ssh/ssh-pkcs11-helper \
/etc/netconfig
add_file /etc/ssh/sshd_config
# allow root login and empty passwords
@ -18,9 +18,7 @@ build ()
echo "PermitEmptyPasswords yes" >> "${BUILDROOT}/etc/ssh/sshd_config"
add_full_dir /usr/lib/libnfsidmap
map add_dir /var/empty /var/lib/nfs/sm /var/lib/nfs/sm.bak /var/lib/nfs/v4recovery \
/var/lib/nfs/rpc_pipefs /var/lib/rpcbind /var/log/gssproxy
chmod 700 "${BUILDROOT}/var/lib/rpcbind"
chown 32:32 "${BUILDROOT}/var/lib/rpcbind"
/var/lib/nfs/rpc_pipefs /var/log/gssproxy
# mask nfs3 systemd
for i in rpcbind.service rpcbind.socket rpcbind.target nfs-server.service; do
add_symlink "/etc/systemd/system/${i}" "/dev/null"
@ -38,7 +36,7 @@ build ()
add_file /usr/share/archboot/remote/etc/systemd/system/ttyd.service /etc/systemd/system/ttyd.service
add_symlink /etc/systemd/system/multi-user.target.wants/ttyd.service /etc/systemd/system/ttyd.service
# fix licenses
map add_file /usr/share/licenses/rpcbind/COPYING /usr/share/licenses/nfsidmap/LICENSE \
map add_file /usr/share/licenses/nfsidmap/LICENSE \
/usr/share/licenses/tmux/LICENSE /usr/share/licenses/ttyd/LICENSE
}