mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-23 08:31:05 +00:00
0d95890887
- 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
22 lines
377 B
Bash
Executable File
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
|