diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2024-02-25 19:16:52 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2024-02-25 21:01:52 +0100 |
commit | 9ab945c854b55cbfac2d7dfb992c10271a31ea8f (patch) | |
tree | 058f751c9e4928d47a3039400746ba154d1530cb /source/a | |
parent | 0eb4f651daa1f0b4bde7a2497444a30db1f80e2e (diff) | |
download | current-9ab945c854b55cbfac2d7dfb992c10271a31ea8f.tar.gz current-9ab945c854b55cbfac2d7dfb992c10271a31ea8f.tar.xz |
Sun Feb 25 19:16:52 UTC 202420240225191652
a/etc-15.1-x86_64-7.txz: Rebuilt.
Don't leave {group,gshadow,passwd,shadow}.new laying around.
We'd left these as a reference in case new default entries were added so that
the admin could take a look at them and merge the new entries into the
existing files. But we've been merging them over automatically for quite some
time. The files contain no unique information and are sort of a footbullet.
ap/qpdf-11.9.0-x86_64-1.txz: Upgraded.
ap/vim-9.1.0136-x86_64-1.txz: Upgraded.
n/whois-5.5.21-x86_64-1.txz: Upgraded.
Updated the .cv and .sd TLD servers.
Removed 4 new gTLDs which are no longer active.
xap/vim-gvim-9.1.0136-x86_64-1.txz: Upgraded.
xfce/xfce4-terminal-1.1.2-x86_64-2.txz: Rebuilt.
[PATCH] screen: Fix wrong assert.
Thanks to J_W.
[PATCH] prefs-dialog: Fix wrong assert.
Thanks to mario.
Diffstat (limited to 'source/a')
-rw-r--r-- | source/a/etc/doinst.sh | 10 | ||||
-rwxr-xr-x | source/a/etc/etc.SlackBuild | 2 |
2 files changed, 9 insertions, 3 deletions
diff --git a/source/a/etc/doinst.sh b/source/a/etc/doinst.sh index f87f9c69e..18b53f333 100644 --- a/source/a/etc/doinst.sh +++ b/source/a/etc/doinst.sh @@ -80,10 +80,8 @@ rm -f etc/mtab.new rm -f etc/motd.new rm -f etc/ld.so.conf.new rm -f etc/hosts.new -#rm -f etc/shadow.new rm -f etc/networks.new rm -f etc/HOSTNAME.new -#rm -f etc/gshadow.new rm -f etc/shells.new rm -f etc/printcap.new #rm -f etc/issue.new @@ -94,6 +92,14 @@ rm -f var/run/utmp.new rm -f var/log/lastlog.new rm -f var/log/wtmp.new +# These are just a hazard to keep around, honestly. +# There's no unique information in them anyway, as any new entries are merged +# into the existing files automatically. +rm -f etc/group.new +rm -f etc/gshadow.new +rm -f etc/passwd.new +rm -f etc/shadow.new + # Make sure $HOME is correct for user sddm: chroot . /usr/sbin/usermod -d /var/lib/sddm sddm > /dev/null 2> /dev/null # Make sure that sddm is a member of group video: diff --git a/source/a/etc/etc.SlackBuild b/source/a/etc/etc.SlackBuild index 90315a952..a21b99c6d 100755 --- a/source/a/etc/etc.SlackBuild +++ b/source/a/etc/etc.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=etc VERSION=15.1 -BUILD=${BUILD:-6} +BUILD=${BUILD:-7} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then |