Displaying 1 result from an estimated 1 matches for "symlink2".
Did you mean:
symlink
2011 Mar 11
2
symlink noop error
...ht. This is
with 2.6.4 on Solaris 10
We want to create a sym link from a source file that is created by a
package. If the package isn''t installed, puppet in noop is registering an
error (big red in the dashboard) because it cannot stat the source file of
the link.
root@warbjohn# cat /tmp/symlink2.pp
package {"somepackage":
ensure => installed,
}
file {"/path/created/by/some/package/link":
source => "/path/created/by/some/package/source",
require => Package["somepackage"],
}
root@warbjohn# puppet --verbose --noop /tmp/symlink2.pp...