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