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
|
|
|
|
#}
|
|
|
|
|
|
|
|
{% if grains['nodename'] != 'dom0' -%}
|
|
|
|
|
|
|
|
include:
|
2024-03-18 11:29:01 -04:00
|
|
|
- utils.tools.common.update
|
2023-11-13 09:33:28 -05:00
|
|
|
- dev.home-cleanup
|
|
|
|
- dotfiles.copy-sh
|
|
|
|
- dotfiles.copy-ssh
|
|
|
|
- dotfiles.copy-x11
|
|
|
|
|
|
|
|
"{{ slsdotpath }}-installed":
|
|
|
|
pkg.installed:
|
2024-03-18 11:29:01 -04:00
|
|
|
- require:
|
|
|
|
- sls: utils.tools.common.update
|
2023-11-13 09:33:28 -05:00
|
|
|
- install_recommends: False
|
|
|
|
- skip_suggestions: True
|
|
|
|
- pkgs:
|
2024-01-21 16:04:34 -05:00
|
|
|
- qubes-core-agent-networking
|
|
|
|
- ca-certificates
|
2023-11-13 09:33:28 -05:00
|
|
|
- socat
|
|
|
|
|
2024-01-21 16:04:34 -05:00
|
|
|
{% set pkg = {
|
|
|
|
'Debian': {
|
|
|
|
'pkg': ['openssh-client'],
|
|
|
|
},
|
|
|
|
'RedHat': {
|
|
|
|
'pkg': ['openssh-clients'],
|
|
|
|
},
|
|
|
|
}.get(grains.os_family) -%}
|
|
|
|
|
|
|
|
"{{ slsdotpath }}-installed-os-specific":
|
|
|
|
pkg.installed:
|
2024-03-18 11:29:01 -04:00
|
|
|
- require:
|
|
|
|
- sls: utils.tools.common.update
|
2024-01-21 16:04:34 -05:00
|
|
|
- install_recommends: False
|
|
|
|
- skip_suggestions: True
|
|
|
|
- pkgs: {{ pkg.pkg|sequence|yaml }}
|
|
|
|
|
2023-11-13 09:33:28 -05:00
|
|
|
"{{ slsdotpath }}-agent-bin-dir":
|
|
|
|
file.recurse:
|
|
|
|
- source: salt://{{ slsdotpath }}/files/server/bin
|
|
|
|
- name: /usr/bin
|
|
|
|
- file_mode: '0755'
|
|
|
|
- user: root
|
|
|
|
- group: root
|
|
|
|
|
|
|
|
"{{ slsdotpath }}-install-rpc-service":
|
|
|
|
file.managed:
|
|
|
|
- name: /etc/qubes-rpc/qusal.SshAgent
|
|
|
|
- source: salt://{{ slsdotpath }}/files/server/rpc/qusal.SshAgent
|
|
|
|
- mode: '0755'
|
|
|
|
- user: root
|
|
|
|
- group: root
|
|
|
|
- makedirs: True
|
|
|
|
|
|
|
|
"{{ slsdotpath }}-skel-create-ssh-directory":
|
|
|
|
file.directory:
|
|
|
|
- name: /etc/skel/.ssh
|
|
|
|
- mode: '0700'
|
|
|
|
- user: user
|
|
|
|
- group: user
|
|
|
|
- makedirs: True
|
|
|
|
|
|
|
|
"{{ slsdotpath }}-skel-create-keys-directory":
|
|
|
|
file.directory:
|
|
|
|
- name: /etc/skel/.ssh/identities.d
|
|
|
|
- mode: '0700'
|
|
|
|
- user: root
|
|
|
|
- group: root
|
|
|
|
- makedirs: True
|
|
|
|
|
|
|
|
{% endif -%}
|