[stable-2.7] Reboot - Fix VMware ESXi not working by adding appropriate commands (#49637)

* Add commands for VMware ESXi

* Add changelog
(cherry picked from commit 7c8af3d684)

Co-authored-by: Sam Doran <sdoran@redhat.com>
This commit is contained in:
Sam Doran 2018-12-11 15:30:11 -05:00 committed by Toshio Kuratomi
parent a17b664b38
commit 015a00e0da
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- reboot - add appropriate commands to make the plugin work with VMware ESXi (https://github.com/ansible/ansible/issues/48425)

View file

@ -51,10 +51,12 @@ class ActionModule(ActionBase):
'macosx': 'who -b',
'solaris': 'who -b',
'sunos': 'who -b',
'vmkernel': 'grep booted /var/log/vmksummary.log | tail -n 1',
}
SHUTDOWN_COMMANDS = {
'alpine': 'reboot',
'vmkernel': 'reboot',
}
SHUTDOWN_COMMAND_ARGS = {
@ -65,10 +67,12 @@ class ActionModule(ActionBase):
'openbsd': '-r +{delay_min} "{message}"',
'solaris': '-y -g {delay_sec} -i 6 "{message}"',
'sunos': '-y -g {delay_sec} -i 6 "{message}"',
'vmkernel': '-d {delay_sec}',
}
TEST_COMMANDS = {
'solaris': 'who'
'solaris': 'who',
'vmkernel': 'who',
}
def __init__(self, *args, **kwargs):