diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2019-07-06 14:43:04 +0200 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2019-07-06 14:56:06 +0200 |
commit | 4f29dbb2b82f0c29bdb385741ac1852550c1e210 (patch) | |
tree | 0f69220d1a1208527e39826b8208cc7f72081b03 /roles/jumbotron | |
parent | fe81c24477abd25f218dde33ff6e23616a90330f (diff) | |
download | labitat-ansible-4f29dbb2b82f0c29bdb385741ac1852550c1e210.tar.gz labitat-ansible-4f29dbb2b82f0c29bdb385741ac1852550c1e210.tar.xz labitat-ansible-4f29dbb2b82f0c29bdb385741ac1852550c1e210.zip |
roles: fix warnings about bare boolean variables
Diffstat (limited to 'roles/jumbotron')
-rw-r--r-- | roles/jumbotron/tasks/console.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/jumbotron/tasks/console.yml b/roles/jumbotron/tasks/console.yml index 42ec011..8cbd190 100644 --- a/roles/jumbotron/tasks/console.yml +++ b/roles/jumbotron/tasks/console.yml @@ -41,6 +41,6 @@ when: not chroot - name: '- when in chroot' command: systemctl enable console-setup.service - when: chroot + when: chroot|bool # vim: set ts=2 sw=2 et: |