mirror of
https://github.com/ben-grande/qusal.git
synced 2025-07-24 15:05:25 -04:00
refactor: initial commit
This commit is contained in:
commit
f6ac229306
594 changed files with 18600 additions and 0 deletions
61
salt/sys-ssh-agent/install.sls
Normal file
61
salt/sys-ssh-agent/install.sls
Normal file
|
@ -0,0 +1,61 @@
|
|||
{#
|
||||
SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#}
|
||||
|
||||
{% if grains['nodename'] != 'dom0' -%}
|
||||
|
||||
include:
|
||||
- ssh.install
|
||||
- dev.home-cleanup
|
||||
- dotfiles.copy-sh
|
||||
- dotfiles.copy-ssh
|
||||
- dotfiles.copy-x11
|
||||
|
||||
"{{ slsdotpath }}-updated":
|
||||
pkg.uptodate:
|
||||
- refresh: True
|
||||
|
||||
"{{ slsdotpath }}-installed":
|
||||
pkg.installed:
|
||||
- refresh: True
|
||||
- install_recommends: False
|
||||
- skip_suggestions: True
|
||||
- pkgs:
|
||||
- socat
|
||||
|
||||
"{{ 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 -%}
|
Loading…
Add table
Add a link
Reference in a new issue