summaryrefslogtreecommitdiff
path: root/doc/examples/cloud-config-gluster.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/cloud-config-gluster.txt')
-rw-r--r--doc/examples/cloud-config-gluster.txt18
1 files changed, 0 insertions, 18 deletions
diff --git a/doc/examples/cloud-config-gluster.txt b/doc/examples/cloud-config-gluster.txt
deleted file mode 100644
index f8183e77..00000000
--- a/doc/examples/cloud-config-gluster.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-#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' ]