Skip to content

Commit

Permalink
Merge pull request #4679 from esselfe/ppp-01
Browse files Browse the repository at this point in the history
ppp: version bumped to 2.5.1
  • Loading branch information
esselfe authored Dec 8, 2024
2 parents da3ec24 + ac83a10 commit 1593d1a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions net/ppp/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
add_priv_group ppp &&

OPTS+=" --disable-static \
--enable-hashes=strong,glibc \
--disable-failure-tokens \
--sbindir=/usr/bin \
--sysconfdir=/etc/ppp \
--runstatedir=/run \
Expand Down Expand Up @@ -32,7 +30,11 @@ fi &&

chown -R root:ppp /usr/bin/pppd /etc/ppp &&
chmod 4750 /usr/bin/pppd &&
chmod 600 /etc/ppp/ppp/*-secrets &&

# On my machine those files exist, but not on the CI environment, so add a check.
if [ -f /etc/ppp/ppp/*-secrets ]; then
chmod 600 /etc/ppp/ppp/*-secrets
fi &&

if module_installed systemd; then
install -D -m644 $SCRIPT_DIRECTORY/system.d/ppp.service /usr/lib/systemd/system/[email protected]
Expand Down
8 changes: 4 additions & 4 deletions net/ppp/DETAILS
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
MODULE=ppp
VERSION=2.5.0
VERSION=2.5.1
SOURCE=$MODULE-$VERSION.tar.gz
SOURCE_URL=https://github.com/ppp-project/ppp/archive/refs/tags/
SOURCE_VFY=sha256:425a5b2df592f4b79e251e5b0d3af48265904162cb0906691a5d35ec355b426d
SOURCE_VFY=sha256:c0537067bdff5f0b5d7a2fd1cca13c220f6dadc89183f23739a2cf9df49c68ca
SOURCE_DIRECTORY=$BUILD_DIRECTORY/ppp-$MODULE-$VERSION
WEB_SITE=http://www.samba.org/ppp
WEB_SITE=https://ppp.samba.org/
ENTERED=20010922
UPDATED=20230924
UPDATED=20241208
SHORT="A server/client for for point to point protocol"

cat << EOF
Expand Down

0 comments on commit 1593d1a

Please sign in to comment.