qusal/salt/sys-syncthing/install-client.sls

64 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-11-13 09:33:28 -05:00
{#
SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
2023-11-13 09:33:28 -05:00
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{% if grains['nodename'] != 'dom0' -%}
{% if grains['os_family']|lower == 'debian' -%}
include:
- .install-repo
- utils.tools.common.update
{% endif -%}
2023-11-13 09:33:28 -05:00
"{{ slsdotpath }}-client-installed":
2023-11-13 09:33:28 -05:00
pkg.installed:
{% if grains['os_family']|lower == 'debian' -%}
- require:
- sls: {{ slsdotpath }}.install-repo
- sls: utils.tools.common.update
{% endif %}
2023-11-13 09:33:28 -05:00
- install_recommends: False
- skip_suggestions: True
- pkgs:
- syncthing
- jq
- man-db
2023-11-13 09:33:28 -05:00
"{{ slsdotpath }}-client-systemd":
file.recurse:
- name: /usr/lib/systemd/system/
- source: salt://{{ slsdotpath }}/files/client/systemd/
- dir_mode: '0755'
- file_mode: '0644'
- user: root
- group: root
- makedirs: True
2023-11-13 09:33:28 -05:00
"{{ slsdotpath }}-client-systemd-enable-qusal-syncthing-forwarder.socket":
service.enabled:
- name: qusal-syncthing-forwarder.socket
"{{ slsdotpath }}-server-systemd":
file.recurse:
- name: /usr/lib/systemd/system/
- source: salt://{{ slsdotpath }}/files/server/systemd/
- dir_mode: '0755'
- file_mode: '0644'
2023-11-13 09:33:28 -05:00
- user: root
- group: root
- makedirs: True
"{{ slsdotpath }}-unmask-syncthing@user":
service.unmasked:
- name: syncthing@user.service
- runtime: False
"{{ slsdotpath }}-enable-syncthing@user":
2023-11-13 09:33:28 -05:00
service.enabled:
- name: syncthing@user.service
2023-11-13 09:33:28 -05:00
{% endif -%}