fixed some styling issues; fixed typo in var name
This commit is contained in:
parent
3b7947a205
commit
09f5a43a45
3 changed files with 6 additions and 6 deletions
|
@ -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'
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
|
||||
- name: restart etherpad
|
||||
- name: 'Restart etherpad'
|
||||
systemd:
|
||||
name: etherpad
|
||||
state: restarted
|
||||
name: 'etherpad'
|
||||
state: 'restarted'
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue