Ansible repo for digital ocean projects
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

20 lignes
453 B

  1. [Unit]
  2. Description=SSHFS Daemon
  3. After=network-online.target
  4. Wants=network-online.target
  5. StartLimitIntervalSec=300
  6. StartLimitBurst=10
  7. [Install]
  8. WantedBy=default.target
  9. [Service]
  10. Type=exec
  11. User=sshfs
  12. Group=www-data
  13. ExecStart=/usr/bin/sshfs -p {{sshfsport }} -o allow_root {{ [username,'@',hostname,':',remotepath,item,'/',' ',localpath,item,'/' ]|join() }}
  14. ExecStop=/usr/bin/umount "{{[ localpath,item,'/']|join() }}"
  15. RestartSec=20
  16. Restart=on-failure