mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-07-12 18:19:42 -07:00
f7146be3ad
Signed-off-by: Matthias Reichl <hias@horus.com>
9 lines
188 B
Bash
Executable File
9 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
REGDOMAIN=
|
|
REGDOMAIN_CONF="/storage/.cache/regdomain.conf"
|
|
[ -r "$REGDOMAIN_CONF" ] && . "$REGDOMAIN_CONF"
|
|
[ -z "$REGDOMAIN" ] && exit 0
|
|
|
|
exec /usr/sbin/iw reg set "$REGDOMAIN"
|