aboutsummaryrefslogtreecommitdiffstats
path: root/roles/debian/tasks/sshd.yml
diff options
context:
space:
mode:
authorEmil Renner Berthing <esmil@labitat.dk>2020-02-27 20:01:17 +0100
committerEmil Renner Berthing <esmil@labitat.dk>2020-02-27 20:01:43 +0100
commitecb6482396c969c6e0eb3e06c182c7bfb91d54fe (patch)
treef9f96c899fb9a6dd09eff524e91574a6206ea29c /roles/debian/tasks/sshd.yml
parent199f459ea883aa0f375ff0a22079969b60e7ca62 (diff)
downloadlabitat-ansible-ecb6482396c969c6e0eb3e06c182c7bfb91d54fe.tar.gz
labitat-ansible-ecb6482396c969c6e0eb3e06c182c7bfb91d54fe.tar.xz
labitat-ansible-ecb6482396c969c6e0eb3e06c182c7bfb91d54fe.zip
roles: remove useless |bool filters
This used to be a fix for some bogus warnings, but they seem to have gone in recent versions of Ansible
Diffstat (limited to 'roles/debian/tasks/sshd.yml')
-rw-r--r--roles/debian/tasks/sshd.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/debian/tasks/sshd.yml b/roles/debian/tasks/sshd.yml
index 03f3279..4e06efe 100644
--- a/roles/debian/tasks/sshd.yml
+++ b/roles/debian/tasks/sshd.yml
@@ -46,6 +46,6 @@
when: not chroot
- name: '- when in chroot'
command: systemctl enable ssh.service
- when: chroot|bool
+ when: chroot
# vim: set ts=2 sw=2 et: