Commit a1c2be8c authored by Simon Séhier's avatar Simon Séhier
Browse files

Merge pull request #46 from saimonn/master

Explain how to set path
parents 888d93e0 18aaae0e
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -12,6 +12,21 @@ This module requires Augeas.

    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

### postfix