1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-19 02:11:32 +00:00

Reformat everything.

This commit is contained in:
Felix Fontein 2025-11-01 12:08:41 +01:00
parent 3f2213791a
commit 340ff8586d
1008 changed files with 61301 additions and 58309 deletions

View file

@ -55,38 +55,40 @@ from ansible.module_utils.common.locale import get_best_parsable_locale
def main():
argument_spec = dict(
state=dict(type='str', required=True, choices=['switch', 'latest']),
image=dict(type='str'),
state=dict(type="str", required=True, choices=["switch", "latest"]),
image=dict(type="str"),
)
module = AnsibleModule(
argument_spec=argument_spec,
required_if=[
('state', 'switch', ['image']),
("state", "switch", ["image"]),
],
)
state = module.params['state']
image = module.params['image']
state = module.params["state"]
image = module.params["image"]
if state == 'switch':
command = ['bootc', 'switch', image, '--retain']
elif state == 'latest':
command = ['bootc', 'upgrade']
if state == "switch":
command = ["bootc", "switch", image, "--retain"]
elif state == "latest":
command = ["bootc", "upgrade"]
locale = get_best_parsable_locale(module)
module.run_command_environ_update = dict(LANG=locale, LC_ALL=locale, LC_MESSAGES=locale, LC_CTYPE=locale, LANGUAGE=locale)
module.run_command_environ_update = dict(
LANG=locale, LC_ALL=locale, LC_MESSAGES=locale, LC_CTYPE=locale, LANGUAGE=locale
)
rc, stdout, err = module.run_command(command, check_rc=True)
if 'Queued for next boot: ' in stdout:
result = {'changed': True, 'stdout': stdout}
if "Queued for next boot: " in stdout:
result = {"changed": True, "stdout": stdout}
module.exit_json(**result)
elif 'No changes in ' in stdout or 'Image specification is unchanged.' in stdout:
result = {'changed': False, 'stdout': stdout}
elif "No changes in " in stdout or "Image specification is unchanged." in stdout:
result = {"changed": False, "stdout": stdout}
module.exit_json(**result)
else:
result = {'changed': False, 'stderr': err}
module.fail_json(msg='ERROR: Command execution failed.', **result)
result = {"changed": False, "stderr": err}
module.fail_json(msg="ERROR: Command execution failed.", **result)
if __name__ == '__main__':
if __name__ == "__main__":
main()