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