From 9259442721ec3a1c0e98e7682795aea6f79f44f6 Mon Sep 17 00:00:00 2001 From: Crag Wolfe Date: Fri, 18 Oct 2013 23:48:40 -0400 Subject: [PATCH] bugfix, needed opening paren. --- manifests/resource/filesystem.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/resource/filesystem.pp b/manifests/resource/filesystem.pp index c390419e..51dacbe3 100644 --- a/manifests/resource/filesystem.pp +++ b/manifests/resource/filesystem.pp @@ -3,9 +3,9 @@ class pacemaker::resource::filesystem($device, $fstype, $group='', $interval="30s", - $ensure=present) - - pacemaker::resource::base { delete("fs-${directory}", '/'): + $ensure=present) { + $resource_id = delete("fs-${directory}", '/') + pacemaker::resource::base { $resource_id: resource_type => "Filesystem", resource_params => "device=${device} directory=${directory} fstype=${fstype}", group => $group,