Skip to content

Commit

Permalink
Setup allowing ssh access to all devops users
Browse files Browse the repository at this point in the history
  • Loading branch information
cailafinn committed Sep 24, 2024
1 parent 2bed0a1 commit f2cfcf7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Linux/external-data-mirror/ansible/external-data-mirror.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- name: Deploy a docker container serving a mirror of the mantid external data store.
hosts: all

roles:
- role: dannixon.system.interactive_users
tags: "initial-setup"
- role: mirror
become: yes
tags: "mirror"
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- name: Create a directory to hold the mirror of the external data.
ansible.builtin.file:
path: /external-data/
state: directory
mode: '0755'

0 comments on commit f2cfcf7

Please sign in to comment.