From ffa81d9a4ef2404ad671daf3b7747220c123f4c1 Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Mon, 6 Apr 2026 14:17:08 -0700 Subject: [PATCH] Remove obsolete docs in .sync directory --- .sync/classes.md | 24 ------------------------ .sync/simple_usage.md | 22 ---------------------- 2 files changed, 46 deletions(-) delete mode 100644 .sync/classes.md delete mode 100644 .sync/simple_usage.md diff --git a/.sync/classes.md b/.sync/classes.md deleted file mode 100644 index 1764de09..00000000 --- a/.sync/classes.md +++ /dev/null @@ -1,24 +0,0 @@ -## Classes - -### postfix - -The top-level class, to install and configure Postfix. - -## Definitions - -### postfix::config - -Add/alter/remove options in Postfix main configuration file (main.cf) - -### postfix::hash - -Creates Postfix hashed "map" files, and build the corresponding db file. - -### postfix::transport - -Manages content in the transport map. - -### postfix::virtual - -Manages content in the virtual map. - diff --git a/.sync/simple_usage.md b/.sync/simple_usage.md deleted file mode 100644 index 34f5e887..00000000 --- a/.sync/simple_usage.md +++ /dev/null @@ -1,22 +0,0 @@ -This module requires Augeas. - -## Simple usage - - include postfix - - 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', - }