Skip to content
Snippets Groups Projects
Commit 627a4658 authored by Eesaan Atluri's avatar Eesaan Atluri
Browse files

feat: Create a missing directory in the path

parent dffb719f
No related branches found
No related tags found
No related merge requests found
Pipeline #13926 passed with stage
in 1 minute and 14 seconds
...@@ -7,7 +7,13 @@ ...@@ -7,7 +7,13 @@
- name: Download patched shell app with shell timeout fix - name: Download patched shell app with shell timeout fix
ansible.builtin.get_url: ansible.builtin.get_url:
url: https://s3.lts.rc.uab.edu/ood-proxy-file/ood-proxy.conf url: https://s3.lts.rc.uab.edu/ood-proxy-file/ood-proxy.conf
dest: /var/www/ood/apps/sys/shell/app.js dest: /var/www/ood/apps/sys/shell/app.js
- name: Create a directory if it does not exist
ansible.builtin.file:
path: /etc/ood/config/apps/shell
state: directory
mode: "0755"
- name: Shell app configuration env - name: Shell app configuration env
ansible.builtin.template: ansible.builtin.template:
...@@ -25,4 +31,3 @@ ...@@ -25,4 +31,3 @@
ansible.builtin.service: ansible.builtin.service:
name: httpd24-httpd name: httpd24-httpd
state: restarted state: restarted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment