diff options
-rw-r--r-- | filter_plugins/ini.py | 2 | ||||
-rw-r--r-- | inventory/host_vars/sk-cloudio/nextcloud.yml | 8 | ||||
-rw-r--r-- | inventory/host_vars/sk-tomnext-nc.yml | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/filter_plugins/ini.py b/filter_plugins/ini.py index f4f596bc..89f553cf 100644 --- a/filter_plugins/ini.py +++ b/filter_plugins/ini.py @@ -24,7 +24,7 @@ def from_ini(o): raise AnsibleFilterError('from_ini requires a string, got %s' % type(o)) parser = configparser.RawConfigParser() parser.optionxform = partial(to_text, errors='surrogate_or_strict') - parser.readfp(StringIO(o)) + parser.read_file(StringIO(o)) d = dict(parser._sections) for k in d: d[k] = dict(d[k]) diff --git a/inventory/host_vars/sk-cloudio/nextcloud.yml b/inventory/host_vars/sk-cloudio/nextcloud.yml index a0b52cb5..13d29815 100644 --- a/inventory/host_vars/sk-cloudio/nextcloud.yml +++ b/inventory/host_vars/sk-cloudio/nextcloud.yml @@ -8,7 +8,7 @@ nextcloud_zfs: nextcloud_instances: luzesombra.skillz.biz: # new: true - version: 29.0.3 + version: 29.0.4 port: 8100 hostnames: - luzesombra.skillz.biz @@ -22,7 +22,7 @@ nextcloud_instances: password: "{{ vault_nextcloud_database_passwords['luzesombra.skillz.biz'] }}" insomnia.skillz.biz: # new: true - version: 29.0.3 + version: 29.0.4 port: 8101 hostnames: - insomnia.skillz.biz @@ -36,7 +36,7 @@ nextcloud_instances: password: "{{ vault_nextcloud_database_passwords['insomnia.skillz.biz'] }}" nc.skillz.biz: # new: true - version: 29.0.3 + version: 29.0.4 port: 8102 hostnames: - nc.skillz.biz @@ -58,7 +58,7 @@ nextcloud_instances: && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* visuals.pixeldada.com: # new: true - version: 29.0.3 + version: 29.0.4 port: 8103 hostnames: - visuals.pixeldada.com diff --git a/inventory/host_vars/sk-tomnext-nc.yml b/inventory/host_vars/sk-tomnext-nc.yml index 335b3a5f..1ace246f 100644 --- a/inventory/host_vars/sk-tomnext-nc.yml +++ b/inventory/host_vars/sk-tomnext-nc.yml @@ -117,7 +117,7 @@ nextcloud_zfs: nextcloud_instances: team.tomwaitz.eu: # new: true - version: 29.0.3 + version: 29.0.4 port: 8100 hostnames: - team.tomwaitz.eu |