]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/buildd/templates/etc/schroot/mount-defaults.erb
massive style guide fixups
[dsa-puppet.git] / modules / buildd / templates / etc / schroot / mount-defaults.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5 # mount.defaults: static file system information for chroots.
6 # Note that the mount point will be prefixed by the chroot path
7 # (CHROOT_PATH)
8 #
9 # <file system> <mount point>   <type>  <options>       <dump>  <pass>
10 <% if scope.lookupvar('site::nodeinfo')['ldap'].has_key?('architecture') and scope.lookupvar('site::nodeinfo')['ldap']['architecture'][0].start_with?('kfreebsd') -%>
11 # kFreeBSD version
12 proc            /proc           linprocfs       defaults        0       0
13 dev             /dev            devfs   rw,bind         0       0
14 dev             /dev/fd         fdescfs rw,bind         0       0
15 sys             /sys            linsysfs        defaults        0       0
16 <% else -%>
17 # Linux version
18 proc            /proc           proc    defaults        0       0
19 /dev/pts        /dev/pts        none    rw,bind         0       0
20 tmpfs           /dev/shm        tmpfs   defaults        0       0
21 <% end %>
22