Skip to content

Commit

Permalink
Merge pull request #5726 from freedomofpress/fix-5715
Browse files Browse the repository at this point in the history
Restart Apache during installation when onion service version configuration changes
  • Loading branch information
emkll authored Jan 20, 2021
2 parents ee61043 + 8183f15 commit 6606ce3
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,16 @@
mode: "0644"
content: |
{{ v2_onion_url_lookup_result.stdout|default('') }}
notify:
- restart apache2
when: v2_onion_services

- name: Remove source v2 onion service info if not enabled
file:
path: /var/lib/securedrop/source_v2_url
state: absent
notify:
- restart apache2
when: not v2_onion_services

- name: Expose source v3 onion service info to app
Expand All @@ -39,10 +43,14 @@
mode: "0644"
content: |
{{ v3_onion_url_lookup_result.stdout|default('') }}
notify:
- restart apache2
when: v3_onion_services

- name: Remove source v3 onion service info if not enabled
file:
path: /var/lib/securedrop/source_v3_url
state: absent
notify:
- restart apache2
when: not v3_onion_services

0 comments on commit 6606ce3

Please sign in to comment.