16 lines
133 B
Plaintext
16 lines
133 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
host="$(hostname)"
|
||
|
|
||
|
case "$host" in
|
||
|
"mlg" | "think")
|
||
|
exit 1
|
||
|
;;
|
||
|
"toaster")
|
||
|
exit 2
|
||
|
;;
|
||
|
"fish")
|
||
|
exit 3
|
||
|
;;
|
||
|
esac
|