qusal/salt/mail/install-reader.sls
Ben Grande f9ead06408 fix: remove extraneous package repository updates
Updates happens multiple times, normally 2 to 3, even if we consider a
state without includes. On states with multiple includes, it could
easily get approximately 10 updates being ran. This behavior leads to
unnecessary network bandwidth being spent and more time to run the
installation state. When the connection is slow and not using the
cacher, such as torified connections on Whonix, the installation can
occurs much faster.

Adding external repositories has to be done prior to update to ensure it
is also fetched.

Fixes: https://github.com/ben-grande/qusal/issues/29
2024-03-18 17:51:36 +01:00

70 lines
1.6 KiB
Plaintext

{#
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-x11
- dotfiles.copy-sh
- dotfiles.copy-net
- dotfiles.copy-mutt
- sys-pgp.install-client
"{{ slsdotpath }}-reader-installed":
pkg.installed:
- require:
- sls: utils.tools.common.update
- skip_suggestions: True
- install_recommends: False
- pkgs:
- qubes-app-shutdown-idle
- qubes-pdf-converter
- qubes-img-converter
- man-db
- vim
- mutt
- notmuch-mutt
- w3m
- less
- urlview
"{{ slsdotpath }}-reader-symlink-msmtpq":
file.symlink:
- require:
- pkg: "{{ slsdotpath }}-reader-installed"
- name: /usr/bin/msmtpq
- target: /usr/libexec/msmtp/msmtpq/msmtpq
- force: True
"{{ slsdotpath }}-reader-symlink-msmtp-queue":
file.symlink:
- require:
- pkg: "{{ slsdotpath }}-reader-installed"
- name: /usr/bin/msmtp-queue
- target: /usr/libexec/msmtp/msmtpq/msmtp-queue
- force: True
"{{ slsdotpath }}-reader-rpc":
file.managed:
- name: /etc/qubes-rpc/qusal.MailFetch
- source: salt://{{ slsdotpath }}/files/reader/rpc/qusal.MailFetch
- mode: "0755"
- user: root
- group: root
- makedirs: True
"{{ slsdotpath }}-reader-bin":
file.managed:
- name: /usr/bin/qusal-send-mail
- source: salt://{{ slsdotpath }}/files/reader/bin/qusal-send-mail
- mode: "0755"
- user: root
- group: root
- makedirs: True
{% endif -%}