summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfiles/etc/board.d/90-set_hostname14
1 files changed, 14 insertions, 0 deletions
diff --git a/files/etc/board.d/90-set_hostname b/files/etc/board.d/90-set_hostname
new file mode 100755
index 0000000..fae4b3c
--- /dev/null
+++ b/files/etc/board.d/90-set_hostname
@@ -0,0 +1,14 @@
+#!/bin/sh
+#
+
+. /lib/functions/uci-defaults.sh
+
+board_config_update
+
+json_is_a system object && exit 0
+
+ucidef_set_hostname "$(uname -n)"
+
+board_config_flush
+
+exit 0