Skip to content

Commit

Permalink
Merge pull request #361 from sbesson/ansible_2.9
Browse files Browse the repository at this point in the history
Ansible 2.9 support
  • Loading branch information
sbesson authored Feb 25, 2022
2 parents 4d3e1e9 + 39f252e commit 16d8f60
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ansible/idr-ftp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Welcome to the IDR upload service.
Please upload files into "incoming/".
anonymous_ftp_pasv_max_port: 32222
anonymous_ftp_image: openmicroscopy/vsftpd-anonymous-upload:0.2.3
# anonymous_ftp_image: openmicroscopy/vsftpd-anonymous-upload:0.2.3

tasks:

Expand Down
2 changes: 1 addition & 1 deletion ansible/idr-omero-readonly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
become_user: postgres
command: psql -c 'ALTER ROLE {{ idr_omero_readonly_database.user }} SET statement_timeout = {{ idr_omero_readonly_database.statement_timeout }};'
when: >-
not (omero_readonly_statement_timeout.stdout | search(
not (omero_readonly_statement_timeout.stdout is search(
'[{,]statement_timeout=' + (
idr_omero_readonly_database.statement_timeout | string) +
'[},]'
Expand Down
2 changes: 1 addition & 1 deletion ansible/management-fluentd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
published_ports:
- "24224:24224/udp"
- "24224:24224"
restart: "{{ fluent_conf_status | changed }}"
restart: "{{ fluent_conf_status is changed }}"
state: started
restart_policy: always
volumes:
Expand Down
12 changes: 6 additions & 6 deletions ansible/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
- src: ome.analysis_tools
version: 1.0.1

- src: ome.anonymous_ftp
version: 0.1.3
- name: ome.anonymous_ftp
version: 0.1.4

- src: ome.basedeps
version: 1.1.0
Expand Down Expand Up @@ -57,8 +57,8 @@
- src: ome.minio_s3_gateway
version: 0.1.1

- src: ome.network_cloud_interfaces
version: 1.2.3
- name: ome.network_cloud_interfaces
version: 1.2.4

- src: ome.network
version: 1.1.4
Expand All @@ -84,8 +84,8 @@
- src: ome.omero_server
version: 4.0.2

- src: ome.omero_user
version: 0.3.0
- name: ome.omero_user
version: 0.3.1

- src: ome.omero_web
version: 4.0.1
Expand Down

0 comments on commit 16d8f60

Please sign in to comment.