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