Sophie

Sophie

distrib > Mageia > 7 > aarch64 > by-pkgid > b3b0d5385d359d48d2ee3b7f6cb3a9f0 > files > 395

cloud-init-0.7.5-7.mga7.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' ]