From d835b2cae8abc71958b69362162e6a70c3d7ef63 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 08:48:59 +0200 Subject: Adding upstream version 4.6.0. Signed-off-by: Daniel Baumann --- templates/filesystem | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 templates/filesystem (limited to 'templates/filesystem') diff --git a/templates/filesystem b/templates/filesystem new file mode 100644 index 0000000..2699699 --- /dev/null +++ b/templates/filesystem @@ -0,0 +1,44 @@ +%name filesystem + +# Copyright (C) 2009 Dejan Muhamedagic +# +# License: GNU General Public License (GPL) + +# Filesystem +# +# This template generates a single primitive resource of type +# Filesystem + +%required + +# The name of block device for the filesystem, or -U, -L +# options for mount, or NFS mount specification. +# Example: +# %% device /dev/hda +%% device + +# The mount point for the filesystem. +# Example: +# %% directory /mnt/fs +%% directory + +# The type of filesystem to be mounted. +# Example: +# %% fstype xfs +%% fstype + +%optional + +# Any extra options to be given as -o options to mount. +# +# For bind mounts, add "bind" here and set fstype to "none". +# We will do the right thing for options such as "bind,ro". +%% options + +%generate + +primitive %_ ocf:heartbeat:Filesystem + params + device=%_:device + directory=%_:directory + fstype=%_:fstype -- cgit v1.2.3