Get and set pretty hostname to use as system name in Web UI (#997)

- Display the pretty hostname as system name in header
- Move IP and hostname down to the footer
- New endpoint for setting the pretty hostname, plus form field in the Web UI
- (unrelated) Use platform.uname() instead of shell uname
- (unrelated) Better logic for fetching the Mac HD Drivers zip file in easyinstall.sh
This commit is contained in:
Daniel Markstedt
2022-11-20 10:20:32 -08:00
committed by GitHub
parent 2645656199
commit 0d95890887
10 changed files with 192 additions and 42 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env bash
TMP_FILE="/tmp/hostnamectl_pretty.tmp"
if [[ "$1" == "set-hostname" && "$2" == "--pretty" ]]; then
if [[ -z "$3" ]]; then
rm "$TMP_FILE" 2>/dev/null || true
else
echo "$3" > $TMP_FILE
fi
exit 0
fi
if [[ "$1" == "status" ]]; then
cat "$TMP_FILE" 2>/dev/null
exit 0
fi
echo "Mock does not recognize: $0 $@"
exit 1