Commit bddc4c15 authored by Russ Allbery's avatar Russ Allbery
Browse files

Fix yet another manifest syntax error

parent a6b34abe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ define apache::site(
  if ($ensure == 'present') {
    exec { "a2ensite ${name}":
      command => "a2ensite ${name}",
      creates => $realname
      creates => $realname,
      require => [ Package['apache'], File[$realname] ],
      notify  => Exec['apache reload'],
    }