RASCSI/python/web/mock/bin/hostnamectl
Daniel Markstedt 0d95890887
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
2022-11-20 10:20:32 -08:00

22 lines
377 B
Bash
Executable File

#!/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