This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
spadinastan/pyinfra/reboot.py
Marc Cataford ef19e50360
Infra/pyinfra helpers (#8)
* build: pyinfra dependency

* infra: system update/reboot helpers
2022-11-12 13:36:19 -05:00

14 lines
196 B
Python

"""
Reboot machines.
"""
import pyinfra
def reboot_machines():
pyinfra.operations.server.reboot(
name="Reboot server", _sudo=True, _use_sudo_password=True
)
reboot_machines()