2023-11-13 09:33:28 -05:00
|
|
|
{#
|
2024-01-29 10:49:54 -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
|
|
|
|
#}
|
|
|
|
|
2024-04-26 13:23:14 -04:00
|
|
|
"{{ slsdotpath }}-install-client-scripts":
|
|
|
|
file.recurse:
|
|
|
|
- name: /usr/bin/
|
|
|
|
- source: salt://{{ slsdotpath }}/files/client/bin/
|
|
|
|
- file_mode: "0755"
|
2024-03-21 16:50:02 -04:00
|
|
|
- group: root
|
|
|
|
- user: root
|
|
|
|
- makedirs: True
|
|
|
|
|
2024-04-26 13:23:14 -04:00
|
|
|
"{{ slsdotpath }}-install-client-repository-definitions":
|
2024-03-21 16:50:02 -04:00
|
|
|
cmd.run:
|
2024-04-26 13:23:14 -04:00
|
|
|
- name: apt-cacher-ng-repo
|
2024-03-21 16:50:02 -04:00
|
|
|
- stateful: True
|
|
|
|
- runas: root
|
2024-04-26 13:23:14 -04:00
|
|
|
- require:
|
|
|
|
- file: "{{ slsdotpath }}-install-client-scripts"
|
|
|
|
|
|
|
|
"{{ slsdotpath }}-install-client-systemd":
|
|
|
|
file.managed:
|
|
|
|
- name: /usr/lib/systemd/system/qubes-apt-cacher-ng-repo.service
|
|
|
|
- source: salt://{{ slsdotpath }}/files/client/systemd/qubes-apt-cacher-ng-repo.service
|
|
|
|
- mode: "0644"
|
|
|
|
- group: root
|
|
|
|
- user: root
|
|
|
|
- makedirs: True
|
|
|
|
|
|
|
|
"{{ slsdotpath }}-install-client-systemd-start-qubes-apt-cacher-ng-repo.service":
|
|
|
|
service.enabled:
|
|
|
|
- name: qubes-apt-cacher-ng-repo.service
|