utils/sh/machine

19 lines
147 B
Plaintext
Raw Normal View History

2022-07-15 20:48:02 +00:00
#!/bin/sh
host="$(hostname)"
case "$host" in
2022-10-14 18:39:55 +00:00
"mlg")
2022-07-15 20:48:02 +00:00
exit 1
;;
"toaster")
exit 2
;;
"fish")
exit 3
;;
2022-10-14 18:39:55 +00:00
"think")
exit 4
;;
2022-07-15 20:48:02 +00:00
esac