From: Matthijs Kooijman Date: Thu, 16 Oct 2008 14:17:03 +0000 (+0200) Subject: vserver: Add some comments to the vserver-create script. X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=10284eae2f18c41fd231ab541f933835b8c1c362;p=matthijs%2Fservers%2Fdrsnuggles.git vserver: Add some comments to the vserver-create script. --- diff --git a/usr/local/bin/vserver-create b/usr/local/bin/vserver-create index 91c4d50..7311ab1 100755 --- a/usr/local/bin/vserver-create +++ b/usr/local/bin/vserver-create @@ -1,10 +1,18 @@ #!/bin/sh -TEMPLATE=template +# The dir containing vserver configuration VSERVERS_CONF=/etc/vservers +# The vserver to use as a template +TEMPLATE=template +# A file containing files (or masks) to not copy from the template vserver. EXCLUDE_FILE="$VSERVERS_CONF/clone-exclude" +# The ip range to use for creating a new vserver. A number between 2 and 253 +# will be appended to this, until an address is found that is not used by +# another vserver.. IP_RANGE=10.42.0. +# The interface on which to create the vserver INTERFACE=dummy0 +# The netmask for the address NETMASK=24 function usage()