Skip to content

Commit

Permalink
Fix missing/wrong quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbenstead committed Oct 16, 2023
1 parent b937b57 commit 64dfabe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions site/profile/manifests/localscratch_mount.pp
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
class profile::localscratch::ephemeraldisk {

Check failure on line 1 in site/profile/manifests/localscratch_mount.pp

View workflow job for this annotation

GitHub Actions / build

trailing whitespace found (check: trailing_whitespace)

Check failure on line 1 in site/profile/manifests/localscratch_mount.pp

View workflow job for this annotation

GitHub Actions / build

trailing whitespace found (check: trailing_whitespace)
mount { /localscratch:
mount { '/localscratch':
ensure => 'mounted',
fstype => 'none',
options => 'rw,bind',
device => "/mnt",
device => '/mnt',
require => [
File["/mnt"],
File["/localscratch"],
File['/mnt'],
File['/localscratch'],
],
}
}

0 comments on commit 64dfabe

Please sign in to comment.