Skip to content

Commit 1015173

Browse files
correct tuples
1 parent 6a3f4aa commit 1015173

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

sqlplus/developer.sls

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{% from "sqlplus/map.jinja" import sqlplus with context %}
22
3-
{% if sqlplus.prefs.tnsnamesurl not in (None, 'undefined') %}
3+
{% if sqlplus.prefs.tnsnamesurl not in (None, 'undefined',) %}
44
5-
{% if grains.os not in ('Windows') %}
5+
{% if grains.os not in ('Windows',) %}
66
77
sqlplus-tnsnames-ora:
88
cmd.run:

sqlplus/init.sls

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sqlplus-create-extract-dirs:
55
- names:
66
- '{{ sqlplus.tmpdir }}'
77
- '{{ sqlplus.oracle.home }}'
8-
{% if grains.os not in ('MacOS', 'Windows') %}
8+
{% if grains.os not in ('MacOS', 'Windows',) %}
99
- '{{ sqlplus.oracle.realhome }}'
1010
- user: root
1111
- group: root
@@ -30,7 +30,7 @@ sqlplus-extract-{{ pkg }}:
3030
- sqlplus-create-extract-dirs
3131
- require_in:
3232
- archive: sqlplus-extract-{{ pkg }}
33-
{% if sqlplus.dl.skip_hashcheck not in ('True', True) %}
33+
{% if sqlplus.dl.skip_hashcheck not in ('True', True,) %}
3434
module.run:
3535
- name: file.check_hash
3636
- path: '{{ sqlplus.tmpdir }}/{{ pkg }}.{{ sqlplus.dl.suffix }}'

sqlplus/linuxenv.sls

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{% from "sqlplus/map.jinja" import sqlplus with context %}
22
3-
{% if grains.os not in ('MacOS', 'Windows') %}
3+
{% if grains.os not in ('MacOS', 'Windows',) %}
44
55
#runtime dependency
66
sqlplus-libaio1:
77
pkg.installed:
8-
{% if grains.os in ('Ubuntu', 'Suse', 'SUSE') %}
8+
{% if grains.os in ('Ubuntu', 'Suse', 'SUSE',) %}
99
- name: libaio1
1010
{%- else %}
1111
- name: libaio
@@ -60,7 +60,7 @@ sqlplus-ldconfig:
6060
6161
## Debian Alternatives ##
6262
{% if sqlplus.linux.altpriority > 0 %}
63-
{% if grains.os_family not in ('Arch') %}
63+
{% if grains.os_family not in ('Arch',) %}
6464
6565
# Add swhome to alternatives system
6666
sqlplus-home-alt-install:

0 commit comments

Comments
 (0)