fixed some styling issues; fixed typo in var name

This commit is contained in:
muppeth 2024-11-22 21:23:50 +01:00
parent 3b7947a205
commit 09f5a43a45
Signed by: muppeth
GPG key ID: 0EBC7B9848D04031
3 changed files with 6 additions and 6 deletions

View file

@ -19,7 +19,7 @@ etherpad_welcome_text: 'Welcome to Etherpad!\n\nThis pad text is synchronized as
etherpad_group_only: 'false'
etherpad_editonly: 'false'
etherpad_minify: 'true'
etherpad_show_settings_in_adminage: 'true'
etherpad_show_settings_in_admin_page: 'true'
etherpad_cleanup_enabled: 'false'
etherpad_cleanup_keep_revisions: '5'
etherpad_suppress_errors_in_pad_text: 'false'

View file

@ -1,6 +1,6 @@
---
- name: restart etherpad
- name: 'Restart etherpad'
systemd:
name: etherpad
state: restarted
name: 'etherpad'
state: 'restarted'

View file

@ -5,7 +5,7 @@
# then uses filter to get all plugins names in one line, without comas or quotes as needed for npm
- name: '[Modules] - Install modules'
command:
cmd: "pnpm run install-plugins {{ etherpad_plugins_list| dict2items | selectattr('value', 'eq', 'enabled') | map(attribute='key') |join(',') | replace(\",\", \" \") }}"
cmd: "pnpm run install-plugins {{ etherpad_plugins_list | dict2items | selectattr('value', 'eq', 'enabled') | map(attribute='key') | join(',') | replace(\",\", \" \") }}"
args:
chdir: '{{ etherpad_app_dir }}/app'
become: true
@ -18,7 +18,7 @@
- name: '[Modules] - Remove modules'
command:
cmd: "pnpm run plugins rm {{ etherpad_plugins_list| dict2items | selectattr('value', 'eq', 'removed') | map(attribute='key') |join(',') | replace(\",\", \" \") }}"
cmd: "pnpm run plugins rm {{ etherpad_plugins_list | dict2items | selectattr('value', 'eq', 'removed') | map(attribute='key') | join(',') | replace(\",\", \" \") }}"
args:
chdir: '{{ etherpad_app_dir }}/app'
become: true