mirror of https://github.com/k3s-io/k3s
10 lines
259 B
Plaintext
10 lines
259 B
Plaintext
|
{% if grains['oscodename'] in [ 'vivid', 'jessie' ] %}
|
||
|
is_systemd: True
|
||
|
systemd_system_path: /lib/systemd/system
|
||
|
{% elif grains['os_family'] == 'RedHat' %}
|
||
|
is_systemd: True
|
||
|
systemd_system_path: /usr/lib/systemd/system
|
||
|
{% else %}
|
||
|
is_systemd: False
|
||
|
{% endif %}
|