Browse Source
Merge pull request #359 from dhose/patch/fix-if-case
Fix for when if case evaluates to false
pull/361/head
Slavi Pantaleev
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
roles/matrix-base/tasks/server_base/setup_debian.yml
|
|
|
@@ -28,7 +28,7 @@ |
|
|
|
apt: |
|
|
|
name: |
|
|
|
- bash-completion |
|
|
|
- "python{{'3' if ansible_python.version.major == 3}}-docker" |
|
|
|
- "python{{'3' if ansible_python.version.major == 3 else ''}}-docker" |
|
|
|
- ntp |
|
|
|
- fuse |
|
|
|
state: latest |
|
|
|
|