Sophie

Sophie

distrib > Fedora > 17 > i386 > by-pkgid > a6c994db5d4485d851e37078d74871c5 > files > 167

cloud-init-0.6.3-0.5.bzr532.fc17.noarch.rpm

#cloud-config
# vim: syntax=yaml
# Mounts volfile exported by glusterfsd running on 
# "volfile-server-hostname" onto the local mount point '/mnt/data'
#
# In reality, replace 'volfile-server-hostname' with one of your nodes
# running glusterfsd.
#
packages:
 - glusterfs-client

mounts:
 - [ 'volfile-server-hostname:6996', /mnt/data, glusterfs, "defaults,nobootwait", "0", "2" ]

runcmd:
 - [ modprobe, fuse ]
 - [ mkdir, '-p', /mnt/data ]
 - [ mount, '-a' ]