diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-06-03 14:32:36 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-06-03 14:32:36 +0000 |
| commit | 93a354611e38a6949add5c2e5ccc93ef79b9755f (patch) | |
| tree | 7fee41752b1047d74c59f8ee046cd62735e7e934 /dhcpcd | |
| parent | 35912580b66e9439f91ea441938828ad8aa33b0d (diff) | |
| download | alicelinux-93a354611e38a6949add5c2e5ccc93ef79b9755f.tar.gz alicelinux-93a354611e38a6949add5c2e5ccc93ef79b9755f.zip | |
Woodpecker CI 5171f1fdd74e7137c305450dd69a29fa5be4143f [SKIP CI]
Diffstat (limited to 'dhcpcd')
| -rw-r--r-- | dhcpcd/.checksum | 2 | ||||
| -rw-r--r-- | dhcpcd/.files | 32 | ||||
| -rw-r--r-- | dhcpcd/abuild | 14 | ||||
| -rwxr-xr-x | dhcpcd/run | 3 |
4 files changed, 51 insertions, 0 deletions
diff --git a/dhcpcd/.checksum b/dhcpcd/.checksum new file mode 100644 index 00000000..a9aed858 --- /dev/null +++ b/dhcpcd/.checksum @@ -0,0 +1,2 @@ +94c74c292c9499f4035cc21d3ccf501f99d0a045267ff2b33e658f2de8afa994 dhcpcd-10.2.3.tar.xz +847d2e7af742d121dcbd8181609be45ab703daea4977fa4b8bea795a6fd907fe run diff --git a/dhcpcd/.files b/dhcpcd/.files new file mode 100644 index 00000000..9b221dd5 --- /dev/null +++ b/dhcpcd/.files @@ -0,0 +1,32 @@ +drwxr-xr-x root/root etc/ +-rw-r--r-- root/root etc/dhcpcd.conf.new +drwxr-xr-x root/root etc/sv/ +drwxr-xr-x root/root etc/sv/dhcpcd/ +-rwxr-xr-x root/root etc/sv/dhcpcd/run.new +lrwxrwxrwx root/root etc/sv/dhcpcd/supervise -> ../../../run/runit/supervise.dhcpcd +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/libexec/ +drwxr-xr-x root/root usr/libexec/dhcpcd-hooks/ +-r--r--r-- root/root usr/libexec/dhcpcd-hooks/01-test +-r--r--r-- root/root usr/libexec/dhcpcd-hooks/20-resolv.conf +-r--r--r-- root/root usr/libexec/dhcpcd-hooks/30-hostname +-r--r--r-- root/root usr/libexec/dhcpcd-hooks/50-ntp.conf +-r-xr-xr-x root/root usr/libexec/dhcpcd-run-hooks +drwxr-xr-x root/root usr/sbin/ +-r-xr-xr-x root/root usr/sbin/dhcpcd +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/dhcpcd/ +drwxr-xr-x root/root usr/share/dhcpcd/hooks/ +-r--r--r-- root/root usr/share/dhcpcd/hooks/10-wpa_supplicant +-r--r--r-- root/root usr/share/dhcpcd/hooks/15-timezone +-r--r--r-- root/root usr/share/dhcpcd/hooks/29-lookup-hostname +-r--r--r-- root/root usr/share/dhcpcd/hooks/50-yp.conf +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man5/ +-r--r--r-- root/root usr/share/man/man5/dhcpcd.conf.5.gz +drwxr-xr-x root/root usr/share/man/man8/ +-r--r--r-- root/root usr/share/man/man8/dhcpcd-run-hooks.8.gz +-r--r--r-- root/root usr/share/man/man8/dhcpcd.8.gz +drwxr-xr-x root/root var/ +drwxr-xr-x root/root var/db/ +drwxr-x--- root/root var/db/dhcpcd/ diff --git a/dhcpcd/abuild b/dhcpcd/abuild new file mode 100644 index 00000000..e3008de1 --- /dev/null +++ b/dhcpcd/abuild @@ -0,0 +1,14 @@ +name=dhcpcd +version=10.2.3 +release=1 +source="https://github.com/NetworkConfiguration/$name/releases/download/v$version/$name-$version.tar.xz + run" +sv="run" +build_opt="--without-udev" + +prebuild() { + # fix when using libressl + if [ -f $SPM_PKGDB/libressl ]; then + sed -i 's/RAND_priv_bytes/RAND_pseudo_bytes/g' compat/arc4random.c + fi +} diff --git a/dhcpcd/run b/dhcpcd/run new file mode 100755 index 00000000..42bcbd33 --- /dev/null +++ b/dhcpcd/run @@ -0,0 +1,3 @@ +#!/bin/sh +exec dhcpcd -BM 2>&1 + |