diff options
Diffstat (limited to 'repos/extra/eiwd')
| -rw-r--r-- | repos/extra/eiwd/.checksum | 4 | ||||
| -rw-r--r-- | repos/extra/eiwd/.files | 27 | ||||
| -rw-r--r-- | repos/extra/eiwd/abuild | 17 | ||||
| -rwxr-xr-x | repos/extra/eiwd/eiwd.run | 2 | ||||
| -rw-r--r-- | repos/extra/eiwd/iwd_passphrase | 34 | ||||
| -rw-r--r-- | repos/extra/eiwd/main.conf | 7 |
6 files changed, 0 insertions, 91 deletions
diff --git a/repos/extra/eiwd/.checksum b/repos/extra/eiwd/.checksum deleted file mode 100644 index 617fb488..00000000 --- a/repos/extra/eiwd/.checksum +++ /dev/null @@ -1,4 +0,0 @@ -59287bd6fb2a92798731215827d3d902d90ef09a5faa2f7f36541b11c56b0890 eiwd.run -a5de2ca0fb61e9f63bc61298ad96c3f6a31f502a6b5202d4586919560c0bfb94 iwd-3.12.tar.xz -50611454e8f2fedf802cec614ea211567909475f614927abc4ee6815f6baae7f iwd_passphrase -1953884a8aaf5060b8383ab515b1a86d53bc35416791918c2c4510254b97f57c main.conf diff --git a/repos/extra/eiwd/.files b/repos/extra/eiwd/.files deleted file mode 100644 index f0ea8a62..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/ --rw-r--r-- 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 100644 index c9b02572..00000000 --- a/repos/extra/eiwd/abuild +++ /dev/null @@ -1,17 +0,0 @@ -name=eiwd -version=3.12 -release=1 -source="https://github.com/ioraff/${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/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 100644 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 100644 index 48446bd1..00000000 --- a/repos/extra/eiwd/main.conf +++ /dev/null @@ -1,7 +0,0 @@ -[General] -EnableNetworkConfiguration=true -UseDefaultInterface=true - -[Network] -RoutePriorityOffset=200 -NameResolvingService=resolvconf |