Skip to content

Commit

Permalink
Uppercase for handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Feb 27, 2024
1 parent 1828c7b commit acd6096
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions roles/jupyterhub/tasks/jupyterhub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,15 @@
ansible.builtin.template:
src: templates/jupyterhub_config.py
dest: /etc/jupyterhub/jupyterhub_config.py
notify: restart services jupyterhub
notify: Restart services jupyterhub

- name: Copy jupyterhub_config.py files
become: true
ansible.builtin.template:
src: "{{ item.value }}"
dest: /etc/jupyterhub/additional/{{ item.key }}.py
with_dict: "{{ jupyterhub_additional_config }}"
notify: restart services jupyterhub
notify: Restart services jupyterhub

- name: Setup External Proxy for JupyterHub systemd unit
become: true
Expand Down Expand Up @@ -154,7 +154,7 @@
WantedBy=multi-user.target
dest: /etc/systemd/system/jupyterhub-proxy.service
mode: "0544"
notify: restart services jupyterhub-proxy
notify: Restart services jupyterhub-proxy

- name: Setup JupyterHub systemd unit
become: true
Expand Down Expand Up @@ -185,7 +185,7 @@
WantedBy=multi-user.target
dest: /etc/systemd/system/jupyterhub.service
mode: "0544"
notify: restart services jupyterhub
notify: Restart services jupyterhub

- name: Ensure JupyterHub Started
become: true
Expand Down
4 changes: 2 additions & 2 deletions roles/jupyterhub/tasks/jupyterhub_ssh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
owner: root
group: root
mode: "0644"
notify: restart services jupyterhub-ssh
notify: Restart services jupyterhub-ssh

- name: Setup JupyterHub-SSH systemd unit
become: true
Expand All @@ -32,7 +32,7 @@
WantedBy=multi-user.target
dest: /etc/systemd/system/jupyterhub-ssh.service
mode: "0544"
notify: restart services jupyterhub-ssh
notify: Restart services jupyterhub-ssh

- name: Restart JupyterHub SSH
become: true
Expand Down

0 comments on commit acd6096

Please sign in to comment.