2024-01-31 10:53:04 -05:00
|
|
|
{#
|
|
|
|
SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
|
|
|
|
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
|
2024-01-31 10:53:04 -05:00
|
|
|
- dev.home-cleanup
|
|
|
|
- dotfiles.copy-sh
|
|
|
|
- dotfiles.copy-x11
|
|
|
|
|
2024-02-16 18:03:19 -05:00
|
|
|
"{{ slsdotpath }}-remove-distro-package":
|
|
|
|
pkg.removed:
|
|
|
|
- pkgs:
|
|
|
|
- electrum
|
|
|
|
- python3-electrum
|
|
|
|
|
2024-01-31 10:53:04 -05:00
|
|
|
"{{ slsdotpath }}-installed":
|
|
|
|
pkg.installed:
|
2024-02-16 18:03:19 -05:00
|
|
|
- require:
|
2024-03-18 11:29:01 -04:00
|
|
|
- sls: utils.tools.common.update
|
2024-02-16 18:03:19 -05:00
|
|
|
- pkg: "{{ slsdotpath }}-remove-distro-package"
|
2024-01-31 10:53:04 -05:00
|
|
|
- install_recommends: False
|
|
|
|
- skip_suggestions: True
|
|
|
|
- pkgs:
|
2024-02-17 06:03:45 -05:00
|
|
|
- socat
|
2024-02-18 11:05:30 -05:00
|
|
|
- man-db
|
|
|
|
## Recommends
|
|
|
|
- python3-zbar
|
2024-02-16 18:03:19 -05:00
|
|
|
## Unlisted dependency.
|
|
|
|
- python3-jsonpatch
|
|
|
|
## Dependencies retrieved from 'electrum' and 'python3-electrum' pkg.
|
2024-01-31 10:53:04 -05:00
|
|
|
- python3-pyqt5
|
2024-02-16 18:03:19 -05:00
|
|
|
- libjs-jquery
|
|
|
|
- libjs-jquery-ui
|
|
|
|
- libjs-jquery-ui-theme-ui-lightness
|
|
|
|
- libsecp256k1-1
|
|
|
|
- node-qrcode-generator
|
|
|
|
- python3-cryptography
|
|
|
|
- python3-distutils
|
|
|
|
- python3-aiohttp
|
|
|
|
- python3-aiohttp-socks
|
|
|
|
- python3-aiorpcx
|
|
|
|
- python3-attr
|
|
|
|
- python3-bitstring
|
|
|
|
- python3-certifi
|
|
|
|
- python3-dnspython
|
|
|
|
- python3-protobuf
|
|
|
|
- python3-qrcode
|
|
|
|
|
|
|
|
"{{ slsdotpath }}-rpc":
|
|
|
|
file.recurse:
|
|
|
|
- name: /etc/qubes-rpc/
|
|
|
|
- source: salt://{{ slsdotpath }}/files/client/rpc/
|
|
|
|
- user: root
|
|
|
|
- group: root
|
|
|
|
- file_mode: '0755'
|
|
|
|
- dir_mode: '0755'
|
|
|
|
- makedirs: True
|
2024-01-31 10:53:04 -05:00
|
|
|
|
|
|
|
{% endif -%}
|