Este sítio funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Inscrição
Iniciar sessão
Thrace-lan.info
/
ansible
Vigiar
1
Marcar como favorito
0
Derivar
0
Código
Questões
0
Pedidos de integração
0
Lançamentos
0
Wiki
Trabalho
Ver a proveniência
working on sshfs still trying to get it all to creatuo automatically
master
Erin Sims
há 2 anos
ascendente
3d079b01c7
cometimento
8935dd97e0
2 ficheiros alterados
com
20 adições
e
0 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+6
-0
playbooks/ssh-config
+14
-0
playbooks/sshfs.yaml
+ 6
- 0
playbooks/ssh-config
Ver ficheiro
@@ -0,0 +1,6 @@
host home.thrace-lan.info
user sshfs
hostname home.thrace-lan.info
port 22000
identityfile ~/.ssh/sshfs-key
+ 14
- 0
playbooks/sshfs.yaml
Ver ficheiro
@@ -19,6 +19,13 @@
name: sshfs
state: present
group: sshfs
- name: make ssh home directory
file:
path: "/home/sshfs/.ssh/"
state: directory
owner: sshfs
group: sshfs
mode: '0700'
- name: copy private key
copy:
src: "./sshfs-key"
@@ -26,6 +33,13 @@
owner: sshfs
group: sshfs
mode: '0700'
- name: copy ssh config
copy:
src: "./ssh-config"
dest: "/home/sshfs/.ssh/config"
owner: sshfs
group: sshfs
mode: '0700'
- name: "sshfs mount {{ item }}"
file:
path: "{{ localpath}}{{ item }}/"
Escrever
Pré-visualizar
Carregando…
Cancelar
Guardar