added unless stopped option

This commit is contained in:
sebi 2015-11-18 11:02:51 +02:00
parent 11f4340a44
commit aa15231cb7

View file

@ -305,7 +305,7 @@ options:
restart_policy: restart_policy:
description: description:
- Container restart policy. - Container restart policy.
choices: ["no", "on-failure", "always"] choices: ["no", "on-failure", "always", "unless-stopped"]
default: null default: null
version_added: "1.9" version_added: "1.9"
restart_policy_retry: restart_policy_retry:
@ -1762,7 +1762,7 @@ def main():
detach = dict(default=True, type='bool'), detach = dict(default=True, type='bool'),
state = dict(default='started', choices=['present', 'started', 'reloaded', 'restarted', 'stopped', 'killed', 'absent', 'running']), state = dict(default='started', choices=['present', 'started', 'reloaded', 'restarted', 'stopped', 'killed', 'absent', 'running']),
signal = dict(default=None), signal = dict(default=None),
restart_policy = dict(default=None, choices=['always', 'on-failure', 'no']), restart_policy = dict(default=None, choices=['always', 'on-failure', 'no', 'unless-stopped']),
restart_policy_retry = dict(default=0, type='int'), restart_policy_retry = dict(default=0, type='int'),
extra_hosts = dict(type='dict'), extra_hosts = dict(type='dict'),
debug = dict(default=False, type='bool'), debug = dict(default=False, type='bool'),