From 64dfabe6846c6b979f782141c7473b386af011de Mon Sep 17 00:00:00 2001 From: Matthew Benstead Date: Mon, 16 Oct 2023 14:06:49 -0700 Subject: [PATCH] Fix missing/wrong quotes --- site/profile/manifests/localscratch_mount.pp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/site/profile/manifests/localscratch_mount.pp b/site/profile/manifests/localscratch_mount.pp index 765c069..4ced5cd 100644 --- a/site/profile/manifests/localscratch_mount.pp +++ b/site/profile/manifests/localscratch_mount.pp @@ -1,12 +1,12 @@ class profile::localscratch::ephemeraldisk { - mount { /localscratch: + mount { '/localscratch': ensure => 'mounted', fstype => 'none', options => 'rw,bind', - device => "/mnt", + device => '/mnt', require => [ - File["/mnt"], - File["/localscratch"], + File['/mnt'], + File['/localscratch'], ], } }