salt.modules.zoneadm
Module for Solaris 10's zoneadm
- maintainer
-
Jorge Schrauwen <sjorge@blackdot.be>
- maturity
-
new
- platform
-
OmniOS,OpenIndiana,SmartOS,OpenSolaris,Solaris 10
New in version 2017.7.0.
Warning
Oracle Solaris 11's zoneadm is not supported by this module!
-
Attach the specified zone.
- zonestring
-
name of the zone
- forceboolean
-
force the zone into the "installed" state with no validation
- brand_optsstring
-
brand specific options to pass
CLI Example:
salt '*' zoneadm.attach lawrence salt '*' zoneadm.attach lawrence True
salt.modules.zoneadm.attach(zone, force=False, brand_opts=None)
-
Boot (or activate) the specified zone.
- zonestring
-
name or uuid of the zone
- singleboolean
-
boots only to milestone svc:/milestone/single-user:default.
- altinitstring
-
valid path to an alternative executable to be the primordial process.
- smf_optionsstring
-
include two categories of options to control booting behavior of the service management facility: recovery options and messages options.
CLI Example:
salt '*' zoneadm.boot clementine salt '*' zoneadm.boot maeve single=True salt '*' zoneadm.boot teddy single=True smf_options=verbose
salt.modules.zoneadm.boot(zone, single=False, altinit=None, smf_options=None)
-
Install a zone by copying an existing installed zone.
- zonestring
-
name of the zone
- sourcestring
-
zone to clone from
- snapshotstring
-
optional name of snapshot to use as source
CLI Example:
salt '*' zoneadm.clone clementine dolores
salt.modules.zoneadm.clone(zone, source, snapshot=None)
-
Detach the specified zone.
- zonestring
-
name or uuid of the zone
CLI Example:
salt '*' zoneadm.detach kissy
salt.modules.zoneadm.detach(zone)
-
Halt the specified zone.
- zonestring
-
name or uuid of the zone
Note
To cleanly shutdown the zone use the shutdown function.
CLI Example:
salt '*' zoneadm.halt hector
salt.modules.zoneadm.halt(zone)
-
Install the specified zone from the system.
- zonestring
-
name of the zone
- nodatasetboolean
-
do not create a ZFS file system
- brand_optsstring
-
brand specific options to pass
CLI Example:
salt '*' zoneadm.install dolores salt '*' zoneadm.install teddy True
salt.modules.zoneadm.install(zone, nodataset=False, brand_opts=None)
-
List all zones
- verboseboolean
-
display additional zone information
- installedboolean
-
include installed zones in output
- configuredboolean
-
include configured zones in output
- hide_globalboolean
-
do not include global zone
CLI Example:
salt '*' zoneadm.list
salt.modules.zoneadm.list_zones(verbose=True, installed=False, configured=False, hide_global=True)
-
Move zone to new zonepath.
- zonestring
-
name or uuid of the zone
- zonepathstring
-
new zonepath
CLI Example:
salt '*' zoneadm.move meave /sweetwater/meave
salt.modules.zoneadm.move(zone, zonepath)
-
Prepares a zone for running applications.
- zonestring
-
name or uuid of the zone
CLI Example:
salt '*' zoneadm.ready clementine
salt.modules.zoneadm.ready(zone)
-
Restart the zone. This is equivalent to a halt boot sequence.
- zonestring
-
name or uuid of the zone
- singleboolean
-
boots only to milestone svc:/milestone/single-user:default.
- altinitstring
-
valid path to an alternative executable to be the primordial process.
- smf_optionsstring
-
include two categories of options to control booting behavior of the service management facility: recovery options and messages options.
CLI Example:
salt '*' zoneadm.reboot dolores salt '*' zoneadm.reboot teddy single=True
salt.modules.zoneadm.reboot(zone, single=False, altinit=None, smf_options=None)
-
Gracefully shutdown the specified zone.
- zonestring
-
name or uuid of the zone
- rebootboolean
-
reboot zone after shutdown (equivalent of shutdown -i6 -g0 -y)
- singleboolean
-
boots only to milestone svc:/milestone/single-user:default.
- altinitstring
-
valid path to an alternative executable to be the primordial process.
- smf_optionsstring
-
include two categories of options to control booting behavior of the service management facility: recovery options and messages options.
CLI Example:
salt '*' zoneadm.shutdown peter salt '*' zoneadm.shutdown armistice reboot=True
salt.modules.zoneadm.shutdown(zone, reboot=False, single=False, altinit=None, smf_options=None)
-
Uninstall the specified zone from the system.
- zonestring
-
name or uuid of the zone
Warning
The -F flag is always used to avoid the prompts when uninstalling.
CLI Example:
salt '*' zoneadm.uninstall teddy
salt.modules.zoneadm.uninstall(zone)
-
Check to make sure the configuration of the specified zone can safely be installed on the machine.
- zonestring
-
name of the zone
CLI Example:
salt '*' zoneadm.verify dolores
salt.modules.zoneadm.verify(zone)
© 2021 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltproject.io/en/latest/ref/modules/all/salt.modules.zoneadm.html