瀏覽代碼

Adding Custom Changes for Debian

Adding a require to /etc/apt/listchanges.conf for the package
apt-listchanges so that listchanges.conf doesn't get added before the
listchanges package is installed causing apt to hit a catch 22.

Add an if statement to 50unattended-upgrades so that Debian doesn't
get Unattended-Upgrade::Allowed-Origins which doesn't work and causes
unattended upgrades to stop.
master
Nate Bohman 6 年之前
父節點
當前提交
459871b18d
共有 2 個檔案被更改,包括 4 行新增0 行删除
  1. +2
    -0
      apt/listchanges.sls
  2. +2
    -0
      apt/templates/unattended_config.jinja

+ 2
- 0
apt/listchanges.sls 查看文件

@@ -15,3 +15,5 @@ apt_listchanges_pkgs:
- group: root
- mode: 644
- source: {{ listchanges_config_template }}
- require:
- pkg: apt-listchanges

+ 2
- 0
apt/templates/unattended_config.jinja 查看文件

@@ -12,11 +12,13 @@
{% set automatic_reboot = unattended.get('automatic_reboot', 'false') -%}
{% set automatic_reboot_time = unattended.get('automatic_reboot_time', 'now') -%}
{% set dl_limit = unattended.get('dl_limit', '0') -%}
{%- if salt['grains.get']('os') != 'Debian' -%}
Unattended-Upgrade::Allowed-Origins {
{%- for pattern in allowed_origins %}
"{{ pattern }}";
{%- endfor %}
};
{%- endif %}
Unattended-Upgrade::Origins-Pattern {
{%- for pattern in origins_patterns %}
"{{ pattern }}";

Loading…
取消
儲存