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