Skip to content

Commit ce6dec8

Browse files
committed
test(pillar/debian): disable IdentLookups for Debian-11 [skip ci]
Similar situation to 0461052. http://www.proftpd.org/docs/modules/mod_ident.html `mod_ident` not available after installation: ``` root@dd4d32004e3c:~# proftpd -l Compiled-in modules: mod_core.c mod_xfer.c mod_rlimit.c mod_auth_unix.c mod_auth_file.c mod_auth.c mod_ls.c mod_log.c mod_site.c mod_delay.c mod_facts.c mod_dso.c mod_auth_pam.c mod_cap.c mod_ctrls.c mod_lang.c ```
1 parent f0adb77 commit ce6dec8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.yamllint

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ ignore: |
1818
test/**/states/**/*.sls
1919
.kitchen/
2020
kitchen.vagrant.yml
21+
test/salt/pillar/debian.sls
2122
test/salt/pillar/redhat.sls
2223
2324
yaml-files:

test/salt/pillar/debian.sls

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
proftpd:
3-
IdentLookups: '"off"'
3+
IdentLookups: {{ '""' if grains.get('osfinger', '') in ['Debian-11'] else '"off"' }}
44
User: nobody
55
Group: nogroup

0 commit comments

Comments
 (0)