Skip to content

Commit

Permalink
More brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
paddyroddy committed May 1, 2024
1 parent 5da5592 commit 2608245
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion roles/docker/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ docker_server_csr: "{{ docker_certificate_directory }}/server.csr"
docker_server_cert: "{{ docker_certificate_directory }}/server-cert.pem"

# mirsg.docker client certificates
docker_client_hostnames: # list of hostnames of clients that will connect to the server
# list of hostnames of clients that will connect to the server
docker_client_hostnames: [] # yamllint disable-line rule:brackets
docker_client_certificate_directory:
"{{ docker_certificate_directory }}/client_certs"
docker_client_certificate_cache_directory:
Expand Down
2 changes: 1 addition & 1 deletion roles/install_python/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ install_python:
- python3
- python3-pip
- python3-setuptools
pip_packages:
pip_packages: [] # yamllint disable-line rule:brackets
2 changes: 1 addition & 1 deletion roles/omero_server/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ omero_server_systemd_after:
omero_server_systemd_requires:

# Dictionary of additional environment variables
omero_server_systemd_environment:
omero_server_systemd_environment: {} # yamllint disable-line rule:braces

# List of additional Python packages to be installed into virtualenv
omero_server_python_addons:
Expand Down
8 changes: 4 additions & 4 deletions roles/xnat/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ xnat_plugin_urls:
- https://api.bitbucket.org/2.0/repositories/xnatdev/xnat-image-viewer-plugin/downloads/ximgview-plugin-1.0.2.jar
- https://api.bitbucket.org/2.0/repositories/xnatx/xnatx-dxm-settings-plugin/downloads/dxm-settings-plugin-1.0.jar

xnat_plugin_bundle_urls:
xnat_plugin_packages:
xnat_server_specific_plugin_urls:
xnat_server_specific_plugin_packages:
xnat_plugin_bundle_urls: [] # yamllint disable-line rule:brackets
xnat_plugin_packages: [] # yamllint disable-line rule:brackets
xnat_server_specific_plugin_urls: [] # yamllint disable-line rule:brackets
xnat_server_specific_plugin_packages: [] # yamllint disable-line rule:brackets

# Path to server logo file
xnat_config_logo: /images/logo.png # use the default XNAT logo
Expand Down
2 changes: 1 addition & 1 deletion roles/xnat/tasks/plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@

- name: Get list of hashes for local plugins
vars:
local_stats:
local_stats: [] # yamllint disable-line rule:brackets
ansible.builtin.set_fact:
local_stats:
"{{ local_stats + [{'name': item.stat.path | basename, 'hash':
Expand Down

0 comments on commit 2608245

Please sign in to comment.