forked from ben-grande/qusal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sls
45 lines (38 loc) · 946 Bytes
/
install.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
39
40
41
42
43
44
45
{#
SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{% if grains['nodename'] != 'dom0' -%}
include:
- utils.tools.common.update
- dotfiles.copy-git
- dotfiles.copy-sh
- dotfiles.copy-x11
- sys-pgp.install-client
"{{ slsdotpath }}-installed":
pkg.installed:
- require:
- sls: utils.tools.common.update
- install_recommends: False
- skip_suggestions: True
- pkgs:
- git
- man-db
"{{ slsdotpath }}-rpc":
file.recurse:
- name: /etc/qubes-rpc/
- source: salt://{{ slsdotpath }}/files/server/rpc
- user: root
- group: root
- file_mode: '0755'
- dir_mode: '0755'
- keep_symlinks: True
- force_symlinks: True
"{{ slsdotpath }}-skel-repository-directory":
file.directory:
- name: /etc/skel/src
- user: root
- group: root
- mode: '0755'
- makedirs: True
{% endif -%}