diff options
Diffstat (limited to 'repos/extra/eiwd')
| -rwxr-xr-x | repos/extra/eiwd/.checksum | 4 | ||||
| -rwxr-xr-x | repos/extra/eiwd/.files | 27 | ||||
| -rwxr-xr-x | repos/extra/eiwd/abuild | 17 | ||||
| -rwxr-xr-x | repos/extra/eiwd/depends | 1 | ||||
| -rwxr-xr-x | repos/extra/eiwd/eiwd.run | 2 | ||||
| -rwxr-xr-x | repos/extra/eiwd/iwd_passphrase | 34 | ||||
| -rwxr-xr-x | repos/extra/eiwd/main.conf | 10 |
7 files changed, 0 insertions, 95 deletions
diff --git a/repos/extra/eiwd/.checksum b/repos/extra/eiwd/.checksum deleted file mode 100755 index 0f0e48f6..00000000 --- a/repos/extra/eiwd/.checksum +++ /dev/null @@ -1,4 +0,0 @@ -59287bd6fb2a92798731215827d3d902d90ef09a5faa2f7f36541b11c56b0890 eiwd.run -84336a016d79ade6dae285a41fb08b3e27faa5ce41c96ac821a61e0038205705 iwd-2.22.tar.xz -50611454e8f2fedf802cec614ea211567909475f614927abc4ee6815f6baae7f iwd_passphrase -3a35a3446350cfe49e3da3de80d66f400e57a8c60c79f7394f53c607b7e91b40 main.conf diff --git a/repos/extra/eiwd/.files b/repos/extra/eiwd/.files deleted file mode 100755 index 6454ed7c..00000000 --- a/repos/extra/eiwd/.files +++ /dev/null @@ -1,27 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/iwd/ --rwxr-xr-x root/root etc/iwd/main.conf.new -drwxr-xr-x root/root etc/sv/ -drwxr-xr-x root/root etc/sv/eiwd/ --rwxr-xr-x root/root etc/sv/eiwd/run.new -lrwxrwxrwx root/root etc/sv/eiwd/supervise -> ../../../run/runit/supervise.eiwd -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/iwd --rwxr-xr-x root/root usr/bin/iwd_passphrase --rwxr-xr-x root/root usr/bin/iwmon -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/iwmon.1.gz -drwxr-xr-x root/root usr/share/man/man5/ --rw-r--r-- root/root usr/share/man/man5/iwd.ap.5.gz --rw-r--r-- root/root usr/share/man/man5/iwd.config.5.gz --rw-r--r-- root/root usr/share/man/man5/iwd.network.5.gz -drwxr-xr-x root/root usr/share/man/man7/ --rw-r--r-- root/root usr/share/man/man7/iwd.debug.7.gz -drwxr-xr-x root/root usr/share/man/man8/ --rw-r--r-- root/root usr/share/man/man8/iwd.8.gz -drwxr-xr-x root/root var/ -drwxr-xr-x root/root var/lib/ -drwx------ root/root var/lib/iwd/ diff --git a/repos/extra/eiwd/abuild b/repos/extra/eiwd/abuild deleted file mode 100755 index 97c01ca6..00000000 --- a/repos/extra/eiwd/abuild +++ /dev/null @@ -1,17 +0,0 @@ -name=eiwd -version=2.22 -release=1 -source="https://github.com/illiliti/${name}/releases/download/${version}-1/iwd-${version}.tar.xz - $name.run - iwd_passphrase - main.conf" -sv="$name.run" -build_opt="--libexecdir=/usr/bin --disable-dbus" - -postbuild() { - cp $SRC/iwd_passphrase $PKG/usr/bin - chmod 755 $PKG/usr/bin/iwd_passphrase - - mkdir -p $PKG/etc/iwd - cp $SRC/main.conf $PKG/etc/iwd -} diff --git a/repos/extra/eiwd/depends b/repos/extra/eiwd/depends deleted file mode 100755 index 0cb0514d..00000000 --- a/repos/extra/eiwd/depends +++ /dev/null @@ -1 +0,0 @@ -openresolv diff --git a/repos/extra/eiwd/eiwd.run b/repos/extra/eiwd/eiwd.run deleted file mode 100755 index 5eb89882..00000000 --- a/repos/extra/eiwd/eiwd.run +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -exec iwd -d 2>&1 diff --git a/repos/extra/eiwd/iwd_passphrase b/repos/extra/eiwd/iwd_passphrase deleted file mode 100755 index cf100dd4..00000000 --- a/repos/extra/eiwd/iwd_passphrase +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -# Simple script to generate iwd network files. - -[ "$1" ] || { - printf '%s\n' "usage: printf pass | ${0##*/} ssid" >&2 - exit 1 -} - -# Read the password from 'stdin'. -read -r pass; [ "$pass" ] || exit 1 - -# Consider all characters as single-byte. -export LC_CTYPE=C - -# The SSID appears verbatim in the name if it contains -# only alphanumeric characters, spaces, underscores or -# minus signs. Otherwise it is encoded as an equal sign -# followed by the lower-case hex encoding of the name. -case $1 in - *[!A-Za-z0-9_' '-]*) - ssid="=$(printf %s "$1" | od -vA n -t x1 | tr -d '\n ')" - ;; - - *) - ssid=$1 - ;; -esac - -printf '%s\n\n' "Save this output to /var/lib/iwd/$ssid.psk" >&2 -printf '[Security]\n' -printf 'Passphrase=%s\n' "$pass" -printf '\nTIP: You can use this output directly as the\n' >&2 -printf ' help messages are printed to stderr.\n' >&2 diff --git a/repos/extra/eiwd/main.conf b/repos/extra/eiwd/main.conf deleted file mode 100755 index a2b44370..00000000 --- a/repos/extra/eiwd/main.conf +++ /dev/null @@ -1,10 +0,0 @@ -[General] -EnableNetworkConfiguration=true -UseDefaultInterface=true - -[Network] -RoutePriorityOffset=200 -NameResolvingService=resolvconf - -[Scan] -DisablePeriodicScan=true |