diff options
author | intrigeri <intrigeri@boum.org> | 2010-12-15 10:44:14 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-12-15 10:44:14 +0100 |
commit | a084ac642c4ee7258356dc108acdcc4bfe614d49 (patch) | |
tree | 39da0d4af59e3a142a6264ccd78f1bea19a03877 | |
parent | a06bf5f71bb06cf5a817e5bdc5229a68150ce187 (diff) | |
download | puppet-apt-a084ac642c4ee7258356dc108acdcc4bfe614d49.tar.gz puppet-apt-a084ac642c4ee7258356dc108acdcc4bfe614d49.tar.bz2 |
Use line define instead of append_if_no_such_line.
The latter is only a wrapper around the former and it seems we want to remove
the latter from our shared common module.
-rw-r--r-- | manifests/dselect.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/dselect.pp b/manifests/dselect.pp index 45a5ddc..44f0e19 100644 --- a/manifests/dselect.pp +++ b/manifests/dselect.pp @@ -1,7 +1,7 @@ class apt::dselect { # suppress annoying help texts of dselect - append_if_no_such_line { dselect_expert: + line { dselect_expert: file => "/etc/dpkg/dselect.cfg", line => "expert", } |