diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2024-07-07 19:32:19 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2024-07-07 21:59:59 +0200 |
commit | 81210e717c09fdbe59fd6fd757b491b74bedf70b (patch) | |
tree | a7d1af1fb4777dd3561beda4832ca8142689589b /source/n/wpa_supplicant/wpa_supplicant.SlackBuild | |
parent | e61df665da5a1e5b181d42ae12bb0dad914a47b2 (diff) | |
download | current-81210e717c09fdbe59fd6fd757b491b74bedf70b.tar.gz current-81210e717c09fdbe59fd6fd757b491b74bedf70b.tar.xz |
Sun Jul 7 19:32:19 UTC 202420240707193219
d/gdb-15.1-x86_64-1.txz: Upgraded.
n/openssh-9.8p1-x86_64-3.txz: Rebuilt.
As upstream refactors this into smaller binaries, we could easily run into
another update that causes an sshd lockout if the listener process isn't
restarted. So, let's try to prevent that. After the package is upgraded,
we'll use "sshd -t" to make sure that we have a sane configuration, and if
so then we'll restart the listener process automatically.
If you don't like this idea, you may turn it off in /etc/default/sshd.
n/wpa_supplicant-2.10-x86_64-5.txz: Rebuilt.
Use more normal permissions for the documentation and examples.
Thanks to Didier Spaier.
Diffstat (limited to '')
-rwxr-xr-x | source/n/wpa_supplicant/wpa_supplicant.SlackBuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source/n/wpa_supplicant/wpa_supplicant.SlackBuild b/source/n/wpa_supplicant/wpa_supplicant.SlackBuild index 6e8071a17..d309b81eb 100755 --- a/source/n/wpa_supplicant/wpa_supplicant.SlackBuild +++ b/source/n/wpa_supplicant/wpa_supplicant.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=wpa_supplicant VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-4} +BUILD=${BUILD:-5} SRCVERSION=$(printf $VERSION | tr _ -) @@ -171,8 +171,9 @@ mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION cp -a \ ChangeLog ../COPYING README README-{P2P,WPS} examples *.txt *.sample $CWD/README.slackware \ $PKG/usr/doc/$PKGNAM-$VERSION -chown -R root:root $PKG/usr/doc/$PKGNAM-$VERSION/* -chmod -R a-w $PKG/usr/doc/$PKGNAM-$VERSION/* + +# Fix python script perms: +find $PKG/usr/doc/$PKGNAM-$VERSION -name "*.py" -exec chmod 755 "{}" \; # If there's a ChangeLog, installing at least part of the recent history # is useful, but don't let it get totally out of control: |