mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 12:21:26 -07:00
Add support for OpenBSD (#46147)
This commit is contained in:
parent
8b1ae30e2e
commit
2769a4e2cc
3 changed files with 17 additions and 3 deletions
|
@ -42,18 +42,24 @@ class ActionModule(ActionBase):
|
|||
|
||||
DEPRECATED_ARGS = {}
|
||||
|
||||
BOOT_TIME_COMMANDS = {
|
||||
'openbsd': "/sbin/sysctl kern.boottime",
|
||||
}
|
||||
|
||||
SHUTDOWN_COMMANDS = {
|
||||
'linux': DEFAULT_SHUTDOWN_COMMAND,
|
||||
'freebsd': DEFAULT_SHUTDOWN_COMMAND,
|
||||
'sunos': '/usr/sbin/shutdown',
|
||||
'darwin': '/sbin/shutdown',
|
||||
'openbsd': DEFAULT_SHUTDOWN_COMMAND,
|
||||
}
|
||||
|
||||
SHUTDOWN_COMMAND_ARGS = {
|
||||
'linux': '-r {delay_min} "{message}"',
|
||||
'freebsd': '-r +{delay_sec}s "{message}"',
|
||||
'sunos': '-y -g {delay_sec} -r "{message}"',
|
||||
'darwin': '-r +{delay_min_macos} "{message}"'
|
||||
'darwin': '-r +{delay_min_macos} "{message}"',
|
||||
'openbsd': '-r +{delay_min} "{message}"',
|
||||
}
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
@ -96,7 +102,13 @@ class ActionModule(ActionBase):
|
|||
def get_system_boot_time(self):
|
||||
stdout = u''
|
||||
stderr = u''
|
||||
command_result = self._low_level_execute_command(self.DEFAULT_BOOT_TIME_COMMAND, sudoable=self.DEFAULT_SUDOABLE)
|
||||
|
||||
# Determine the system distribution in order to use the correct shutdown command arguments
|
||||
uname_result = self._low_level_execute_command('uname')
|
||||
distribution = uname_result['stdout'].strip().lower()
|
||||
|
||||
boot_time_command = self.BOOT_TIME_COMMANDS.get(distribution, self.DEFAULT_BOOT_TIME_COMMAND)
|
||||
command_result = self._low_level_execute_command(boot_time_command, sudoable=self.DEFAULT_SUDOABLE)
|
||||
|
||||
# For single board computers, e.g., Raspberry Pi, that lack a real time clock and are using fake-hwclock
|
||||
# launched by systemd, the update of utmp/wtmp is not done correctly.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue