mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
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"
|