Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. /etc/systemd/system/home-share.mount
  2.  
  3. [Unit]
  4. Description=Mount /home/share directory
  5. Before=local-fs.target
  6. After=home.mount
  7.  
  8. [Mount]
  9. Where=/home/share
  10. What=/dev/disk/by-uuid/5f5faae6-7719-4c58-bbbe-69da062c1aad
  11. Type=ext4
  12. Options=rw,relatime,data=ordered
  13.  
  14.  
  15. ~~~~~~
  16. /etc/systemd/system/home-share.automount
  17.  
  18. [Unit]
  19. Description=Automount /home/share directory
  20. Before=local-fs.target
  21.  
  22. [Automount]
  23. Where=/home/share
  24. TimeoutIdleSec=10min
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement