Skip to content
Snippets Groups Projects
Commit 18aaae0e authored by Simon Séhier's avatar Simon Séhier
Browse files

Explain how to set path

parent 888d93e0
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,21 @@ This module requires Augeas. ...@@ -12,6 +12,21 @@ This module requires Augeas.
postfix::config { "relay_domains": value => "localhost host.foo.com" } postfix::config { "relay_domains": value => "localhost host.foo.com" }
## Exec paths
In order to not have any path problem, you should add the following line in
some globally included .pp file:
Exec {
path => '/some/relevant/path:/some/other:...',
}
For example:
Exec {
path => '/bin:/sbin:/usr/sbin:/usr/bin',
}
## Classes ## Classes
### postfix ### postfix
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment