mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Reboot - Fix VMware ESXi not working by adding appropriate commands (#49637)
* Add commands for VMware ESXi * Add changelog
This commit is contained in:
2
changelogs/fragments/reboot-vmware-esxi.yaml
Normal file
2
changelogs/fragments/reboot-vmware-esxi.yaml
Normal 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)
|
||||
@@ -45,10 +45,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 = {
|
||||
@@ -59,10 +61,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):
|
||||
|
||||
Reference in New Issue
Block a user