mirror of
https://github.com/iiab/iiab.git
synced 2025-02-12 19:22:24 +00:00
change how os computed and move all platform false to default vars
set xsce_host to box
This commit is contained in:
parent
577e80d6db
commit
677bf62fa3
7 changed files with 44 additions and 26 deletions
|
@ -1,9 +1,5 @@
|
||||||
is_debian: false
|
is_centos: True
|
||||||
is_debuntu: false
|
is_redhat: True
|
||||||
is_ubuntu: false
|
|
||||||
is_centos: true
|
|
||||||
is_fedora: false
|
|
||||||
is_redhat: true
|
|
||||||
dns_service: named
|
dns_service: named
|
||||||
dns_user: named
|
dns_user: named
|
||||||
proxy: squid
|
proxy: squid
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
is_debian: true
|
is_debian: True
|
||||||
is_debuntu: true
|
is_debuntu: True
|
||||||
is_ubuntu: false
|
|
||||||
is_redhat: false
|
|
||||||
is_fedora: False
|
|
||||||
is_centos: false
|
|
||||||
dns_service: bind9
|
dns_service: bind9
|
||||||
dns_user: bind
|
dns_user: bind
|
||||||
proxy: squid3
|
proxy: squid3
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
is_debian: false
|
is_redhat: True
|
||||||
is_debuntu: false
|
|
||||||
is_centos: false
|
|
||||||
is_redhat: true
|
|
||||||
dns_service: named
|
dns_service: named
|
||||||
dns_user: named
|
dns_user: named
|
||||||
proxy: squid
|
proxy: squid
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
is_debian: false
|
is_redhat: True
|
||||||
is_debuntu: false
|
|
||||||
is_centos: false
|
|
||||||
is_redhat: true
|
|
||||||
dns_service: named
|
dns_service: named
|
||||||
dns_user: named
|
dns_user: named
|
||||||
proxy: squid
|
proxy: squid
|
||||||
|
|
25
vars/Raspbian.yml
Normal file
25
vars/Raspbian.yml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
is_rpi: True
|
||||||
|
is_debian: True
|
||||||
|
is_debuntu: True
|
||||||
|
|
||||||
|
dns_service: bind9
|
||||||
|
dns_user: bind
|
||||||
|
proxy: squid3
|
||||||
|
proxy_user: proxy
|
||||||
|
apache_service: apache2
|
||||||
|
apache_user: apache
|
||||||
|
apache_config_dir: apache2/sites-available
|
||||||
|
apache_data: www-data
|
||||||
|
apache_log_dir: /var/log/apache2
|
||||||
|
smb_service: smbd
|
||||||
|
nmb_service: nmbd
|
||||||
|
kalite_program: /usr/local/bin/kalite
|
||||||
|
systemctl_program: /bin/systemctl
|
||||||
|
mysql_service: mysql
|
||||||
|
apache_log: /var/log/apache2/access.log
|
||||||
|
# cups lp module not available in raspbian, causes systemd-modueles-load to fail
|
||||||
|
# which in turn cause netfilter-persistent to fail, which is essential
|
||||||
|
cups_install: True
|
||||||
|
sshd_service: ssh
|
||||||
|
php_version: 5
|
||||||
|
postgresql_version: 9.4
|
|
@ -1,8 +1,5 @@
|
||||||
is_debuntu: true
|
is_debuntu: True
|
||||||
is_ubuntu: true
|
is_ubuntu: True
|
||||||
is_debian: false
|
|
||||||
is_redhat: false
|
|
||||||
is_fedora: false
|
|
||||||
dns_service: bind9
|
dns_service: bind9
|
||||||
dns_user: bind
|
dns_user: bind
|
||||||
proxy: squid
|
proxy: squid
|
||||||
|
|
|
@ -43,7 +43,7 @@ local_tz: "{{lookup ('env','TZ') }}"
|
||||||
|
|
||||||
# Network Parameters
|
# Network Parameters
|
||||||
|
|
||||||
xsce_hostname: schoolserver
|
xsce_hostname: box
|
||||||
xsce_domain: lan
|
xsce_domain: lan
|
||||||
lan_ip: 172.18.96.1
|
lan_ip: 172.18.96.1
|
||||||
lan_netmask: 255.255.224.0
|
lan_netmask: 255.255.224.0
|
||||||
|
@ -307,3 +307,13 @@ xovis_backup_dir: "/library/users"
|
||||||
xovis_chart_heading: "My School: Usage Data Visualization"
|
xovis_chart_heading: "My School: Usage Data Visualization"
|
||||||
|
|
||||||
# 9-LOCAL-ADDONS
|
# 9-LOCAL-ADDONS
|
||||||
|
|
||||||
|
# Platforms - turn all off and let <OS>.yml turn on as appropriate
|
||||||
|
|
||||||
|
is_rpi: true
|
||||||
|
is_debian: False
|
||||||
|
is_debuntu: False
|
||||||
|
is_ubuntu: False
|
||||||
|
is_redhat: False
|
||||||
|
is_fedora: False
|
||||||
|
is_centos: False
|
||||||
|
|
Loading…
Reference in a new issue