-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcopy-dom0.sls
38 lines (30 loc) · 989 Bytes
/
copy-dom0.sls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{#
SPDX-FileCopyrightText: 2023 - 2025 Benjamin Grande M. S. <[email protected]>
SPDX-FileCopyrightText: 2024 seven-beep <[email protected]>
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{%- set qusal_dot = salt["pillar.get"]("qusal:dotfiles:all", default=True) -%}
{%- if salt["pillar.get"]("qusal:dotfiles:dom0", default=qusal_dot) -%}
{%- import "dom0/gui-user.jinja" as gui_user -%}
"{{ slsdotpath }}-copy-dom0-home":
file.recurse:
- name: {{ gui_user.gui_user_home }}
- source: salt://{{ slsdotpath }}/files/dom0/
- file_mode: '0644'
- dir_mode: '0755'
- user: {{ gui_user.gui_user }}
- group: {{ gui_user.gui_user }}
- makedirs: True
"{{ slsdotpath }}-copy-dom0-skel":
file.recurse:
- name: /etc/skel
- source: salt://{{ slsdotpath }}/files/dom0/
- file_mode: '0644'
- dir_mode: '0755'
- user: root
- group: root
- makedirs: True
{%- else -%}
"{{ sls }}-was-disabled-by-pillar":
test.nop
{%- endif %}