Guest User

Untitled

a guest
Nov 22nd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ---
  2. - hosts: all
  3. remote_user: username
  4.  
  5. tasks:
  6. - name: Altering the Mount Points
  7. mount:
  8. path: /testing
  9. src: /dev/sdb
  10. state: unmounted
  11. become: true
  12.  
  13. #My Test disk
  14. /dev/sdb /testing ext3 defaults 0 0
  15.  
  16. #My Test disk
  17.  
  18. ¯_(ツ)_/¯ Nothing here
  19.  
  20. [root@app-test ~]# ll /testing
  21. ls: cannot access /testing: No such file or directory
Add Comment
Please, Sign In to add comment