1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

[PR #7102/55cfd27b backport][stable-7] freebsd: shutdown -p ... on freebsd to power off machine (#7112)

freebsd: shutdown -p ... on freebsd to power off machine (#7102)

* freebsd: shutdown -p ... on freebsd to power off machine

* Use shutdown -p ... on FreeBSD such that the machine is halted and
  powered off (-p) otherwise the machine is halted (-h) but remains on.

* Update changelogs/fragments/7102-freebsd-shutdown-p.yml

Co-authored-by: Felix Fontein <felix@fontein.de>

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 55cfd27be9)

Co-authored-by: Derek Schrock <dereks@lifeofadishwasher.com>
This commit is contained in:
patchback[bot] 2023-08-14 21:19:16 +02:00 committed by GitHub
parent 235e55fa9f
commit d4eaef2d83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View file

@ -0,0 +1,2 @@
minor_changes:
- shutdown - use ``shutdown -p ...`` with FreeBSD to halt and power off machine (https://github.com/ansible-collections/community.general/pull/7102).

View file

@ -45,7 +45,7 @@ class ActionModule(ActionBase):
SHUTDOWN_COMMAND_ARGS = { SHUTDOWN_COMMAND_ARGS = {
'alpine': '', 'alpine': '',
'void': '-h +{delay_min} "{message}"', 'void': '-h +{delay_min} "{message}"',
'freebsd': '-h +{delay_sec}s "{message}"', 'freebsd': '-p +{delay_sec}s "{message}"',
'linux': DEFAULT_SHUTDOWN_COMMAND_ARGS, 'linux': DEFAULT_SHUTDOWN_COMMAND_ARGS,
'macosx': '-h +{delay_min} "{message}"', 'macosx': '-h +{delay_min} "{message}"',
'openbsd': '-h +{delay_min} "{message}"', 'openbsd': '-h +{delay_min} "{message}"',

View file

@ -77,8 +77,8 @@
- name: Verify shutdown delay is present in seconds in FreeBSD - name: Verify shutdown delay is present in seconds in FreeBSD
assert: assert:
that: that:
- '"-h +100s" in shutdown_result["shutdown_command"]' - '"-p +100s" in shutdown_result["shutdown_command"]'
- '"-h +0s" in shutdown_result_minus["shutdown_command"]' - '"-p +0s" in shutdown_result_minus["shutdown_command"]'
when: ansible_system == 'FreeBSD' when: ansible_system == 'FreeBSD'
- name: Verify shutdown delay is present in seconds in Solaris, SunOS - name: Verify shutdown delay is present in seconds in Solaris, SunOS