Skip to content

Commit

Permalink
test(pillar/debian): disable IdentLookups for Debian-11 [skip ci]
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
myii committed Jul 18, 2021
1 parent f0adb77 commit ce6dec8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .yamllint
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ ignore: |
test/**/states/**/*.sls
.kitchen/
kitchen.vagrant.yml
test/salt/pillar/debian.sls
test/salt/pillar/redhat.sls
yaml-files:
Expand Down
2 changes: 1 addition & 1 deletion test/salt/pillar/debian.sls
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
proftpd:
IdentLookups: '"off"'
IdentLookups: {{ '""' if grains.get('osfinger', '') in ['Debian-11'] else '"off"' }}
User: nobody
Group: nogroup

0 comments on commit ce6dec8

Please sign in to comment.