diff options
author | intrigeri <intrigeri@boum.org> | 2015-02-28 13:01:14 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2015-02-28 13:01:14 +0000 |
commit | 3bd6f73973f0a4b744f75d3a9b2c73b15e76603b (patch) | |
tree | f8f1f9a355a00edf5716adc61484c255c013902f | |
parent | 31f8661eea49b05f32ccca4ad3d628548ba54b77 (diff) | |
download | puppet-apt-3bd6f73973f0a4b744f75d3a9b2c73b15e76603b.tar.gz puppet-apt-3bd6f73973f0a4b744f75d3a9b2c73b15e76603b.tar.bz2 |
Add missing "include common::moduledir".
Without this, $common::moduledir::module_dir_path is empty.
-rw-r--r-- | manifests/init.pp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 0fb4f1b..68856cc 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -113,6 +113,7 @@ class apt( # backports uses the normal archive key now package { 'debian-backports-keyring': ensure => absent } + include common::moduledir common::module_dir { 'apt': } $apt_base_dir = "${common::moduledir::module_dir_path}/apt" |