blob: 0e5267daba66dc8eae63ebde8d7630aeee125363 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# This files contains system handlers for Alpine Linux.
#
# Copyright (c) 2013-2017 Fabian Affolter <fabian@affolter-engineering.ch>
#
# Licensed under CC BY 3.0. All rights reserved.
#
# Usage:
# handlers:
# - include: files/system.yml
#
---
- name: reboot system
command: /sbin/reboot
- name: halt system
command: /sbin/halt
|