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

15 lines
196 B
Python
Raw Normal View History

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