Merge branch 'stretch-stable' into stretch-unstable

This commit is contained in:
Alexandre Aubin 2020-06-06 02:11:11 +02:00
commit 95fac921a6
2 changed files with 16 additions and 2 deletions

15
debian/changelog vendored
View file

@ -1,3 +1,18 @@
yunohost (3.8.4.8) stable; urgency=low
- [fix] Don't add unprotected_urls if it's already in skipped_urls (#1005)
- [enh] Add pre-defined DHE group and set up Nginx to use it (#1007)
- [fix] Make sure to propagate change in slapd systemd conf during initial install (2d42480f)
- [fix] More accurate grep to avoid mistakenly grepping commented lines... (2408a620)
- [enh] Update n to 6.5.1 (#1012)
- [fix] Set sury default pinning to 600 (653c5fde)
- [enh] Clean stale file/hashes in regen-conf (#1009)
- [fix] Weirdness in regen-conf mechanism for SSH conf (#1014)
Thanks to all contributors <3 ! (É. Gaspar, Josué, SohKa)
-- Alexandre Aubin <alex.aubin@mailoo.org> Sat, 06 Jun 2020 01:59:08 +0200
yunohost (3.8.4.7) stable; urgency=low yunohost (3.8.4.7) stable; urgency=low
- [fix] Remove some remains of glances (17eec25e) - [fix] Remove some remains of glances (17eec25e)

View file

@ -7,7 +7,6 @@ from yunohost.regenconf import regen_conf, manually_modified_files, _get_conf_ha
TEST_DOMAIN = "secondarydomain.test" TEST_DOMAIN = "secondarydomain.test"
TEST_DOMAIN_NGINX_CONFIG = "/etc/nginx/conf.d/%s.conf" % TEST_DOMAIN TEST_DOMAIN_NGINX_CONFIG = "/etc/nginx/conf.d/%s.conf" % TEST_DOMAIN
TEST_DOMAIN_DNSMASQ_CONFIG = "/etc/dnsmasq.d/%s" % TEST_DOMAIN TEST_DOMAIN_DNSMASQ_CONFIG = "/etc/dnsmasq.d/%s" % TEST_DOMAIN
SSHD_CONFIG = "/etc/ssh/sshd_config" SSHD_CONFIG = "/etc/ssh/sshd_config"
def setup_function(function): def setup_function(function):
@ -201,4 +200,4 @@ def test_stale_hashes_if_file_manually_deleted():
# regen_conf(names=["dnsmasq"], force=True) # regen_conf(names=["dnsmasq"], force=True)
# #
# assert not os.path.exists(TEST_DOMAIN_DNSMASQ_CONFIG) # assert not os.path.exists(TEST_DOMAIN_DNSMASQ_CONFIG)
# assert TEST_DOMAIN_DNSMASQ_CONFIG not in _get_conf_hashes("dnsmasq") # assert TEST_DOMAIN_DNSMASQ_CONFIG not in _get_conf_hashes("dnsmasq")