9 lines
130 B
Bash
Executable File
9 lines
130 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "Usage: $(basename $0) [ --list | --hostname <hostname> ]"
|
|
exit 1;
|
|
fi
|
|
|
|
ezjail-admin list
|