From 7714f45b2f8e76e686fed4344d4c3a08a678ebd0 Mon Sep 17 00:00:00 2001 From: Alexander Weidinger Date: Fri, 27 Apr 2018 13:08:19 +0200 Subject: [PATCH] Revert "Drop default AdminAuth" This reverts commit e4d1e7de10a5cb232c339a4c986e16b8a46ef2b0. Sry, I was on the wrong branch. --- apt-cacher/ng/files/security.conf | 8 ++------ apt-cacher/ng/map.jinja | 2 ++ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/apt-cacher/ng/files/security.conf b/apt-cacher/ng/files/security.conf index 1041c26..9ebc00b 100644 --- a/apt-cacher/ng/files/security.conf +++ b/apt-cacher/ng/files/security.conf @@ -7,10 +7,6 @@ # Basic authentication with username and password, required to # visit pages with administrative functionality. Format: username:password -{%- set cfg = salt['pillar.get']('apt_cacher_ng', {}) %} -{%- set admin_account = cfg.get('admin_account', False) %} -{%- set admin_passwd = cfg.get('admin_passwd', False) %} -{%- if admin_account and admin_passwd %} -AdminAuth: {{ admin_account }}:{{ admin_passwd }} -{%- endif %} +{% from "apt-cacher/ng/map.jinja" import apt_cacher_ng with context %} +AdminAuth: {{ apt_cacher_ng.admin_account }}:{{ apt_cacher_ng.admin_passwd }} diff --git a/apt-cacher/ng/map.jinja b/apt-cacher/ng/map.jinja index 0362316..aea97a6 100644 --- a/apt-cacher/ng/map.jinja +++ b/apt-cacher/ng/map.jinja @@ -13,5 +13,7 @@ 'service': 'apt-cacher-ng', 'credentials': '/etc/apt-cacher-ng/security.conf', 'client_config': '/etc/apt/apt.conf.d/80proxy', + 'admin_account': 'root', + 'admin_passwd': 'admin' }, }, merge=salt['pillar.get']('apt_cacher_ng')) %}