Advertisement
Guest User

Untitled

a guest
Jul 9th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. puppet resource mount
  2. mount { '/':
  3. ensure => 'mounted',
  4. device => 'LABEL=cloudimg-rootfs',
  5. dump => '0',
  6. fstype => 'ext4',
  7. options => 'defaults',
  8. pass => '0',
  9. target => '/etc/fstab',
  10. }
  11. mount { '/dev':
  12. ensure => 'ghost',
  13. target => '/etc/fstab',
  14. }
  15. mount { '/dev/pts':
  16. ensure => 'ghost',
  17. target => '/etc/fstab',
  18. }
  19. mount { '/proc':
  20. ensure => 'ghost',
  21. target => '/etc/fstab',
  22. }
  23. mount { '/run':
  24. ensure => 'ghost',
  25. target => '/etc/fstab',
  26. }
  27. mount { '/run/lock':
  28. ensure => 'ghost',
  29. target => '/etc/fstab',
  30. }
  31. mount { '/run/shm':
  32. ensure => 'ghost',
  33. target => '/etc/fstab',
  34. }
  35. mount { '/run/user':
  36. ensure => 'ghost',
  37. target => '/etc/fstab',
  38. }
  39. mount { '/sys':
  40. ensure => 'ghost',
  41. target => '/etc/fstab',
  42. }
  43. mount { '/sys/fs/cgroup':
  44. ensure => 'ghost',
  45. target => '/etc/fstab',
  46. }
  47. mount { '/sys/fs/cgroup/systemd':
  48. ensure => 'ghost',
  49. target => '/etc/fstab',
  50. }
  51. mount { '/sys/fs/fuse/connections':
  52. ensure => 'ghost',
  53. target => '/etc/fstab',
  54. }
  55. mount { '/sys/fs/pstore':
  56. ensure => 'ghost',
  57. target => '/etc/fstab',
  58. }
  59. mount { '/sys/kernel/debug':
  60. ensure => 'ghost',
  61. target => '/etc/fstab',
  62. }
  63. mount { '/sys/kernel/security':
  64. ensure => 'ghost',
  65. target => '/etc/fstab',
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement