1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Merge pull request #1019 from holta/sugar-stats-tweak

More fully deprecate sugar-stats
This commit is contained in:
A Holt 2018-08-21 12:54:11 -04:00 committed by GitHub
commit 472e85951b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@
- name: SUGAR-STATS
include_role:
name: sugar-stats
when: sugar_stats_install and ansible_distribution != "CentOS"
when: sugar_stats_install is defined and sugar_stats_install and ansible_distribution != "CentOS"
tags: olpc, sugar-stats
- name: TEAMVIEWER
@ -48,7 +48,7 @@
- name: XOVIS
include_role:
name: xovis
when: xovis_install and ansible_distribution != "CentOS"
when: xovis_install is defined and xovis_install and ansible_distribution != "CentOS"
tags: xovis
- name: Recording STAGE 8 HAS COMPLETED ======================

View file

@ -78,7 +78,7 @@
# set_fact:
# py_captive_portal_install: True
- name: (Re)Installing captive portal
- name: (Re)Installing Captive Portal
include_tasks: captive_portal.yml
when: py_captive_portal_install