Browse Source

working on changes, and debugging

master
Erin Sims 2 years ago
parent
commit
fbeb67d0ef
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      playbooks/sshfs.yaml

+ 3
- 4
playbooks/sshfs.yaml View File

@@ -33,14 +33,14 @@
owner: sshfs owner: sshfs
group: sshfs group: sshfs
mode: '0700' mode: '0700'
- name: copy ssh config
- name: copy ssh config
copy: copy:
src: "./ssh-config" src: "./ssh-config"
dest: "/home/sshfs/.ssh/config" dest: "/home/sshfs/.ssh/config"
owner: sshfs owner: sshfs
group: sshfs group: sshfs
mode: '0700' mode: '0700'
- name: "sshfs mount {{ item }}"
- name: "sshfs mount {{ item }}"
file: file:
path: "{{ localpath}}{{ item }}/" path: "{{ localpath}}{{ item }}/"
state: directory state: directory
@@ -48,8 +48,7 @@
group: root group: root
mode: '0777' mode: '0777'
loop: "{{ share }}" loop: "{{ share }}"
- name: "mount {{ item}}"
- name: "mount {{ item}}"
ansible.builtin.command: "/usr/bin/sshfs -o allow_root {{ [username,'@',hostname,':',remotepath,item,'/',' ',localpath,item,'/' ]|join() }}" ansible.builtin.command: "/usr/bin/sshfs -o allow_root {{ [username,'@',hostname,':',remotepath,item,'/',' ',localpath,item,'/' ]|join() }}"
become_user: sshfs become_user: sshfs
loop: "{{ share }}" loop: "{{ share }}"


Loading…
Cancel
Save