From 616a95550c889c991cc7fcf265c927dc2f983a92 Mon Sep 17 00:00:00 2001 From: Alexander Klimov Date: Mon, 15 Sep 2014 14:35:28 +0200 Subject: [PATCH] Add module/class `icingacli' refs #6842 --- .vagrant-puppet/modules/icingacli/manifests/init.pp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .vagrant-puppet/modules/icingacli/manifests/init.pp diff --git a/.vagrant-puppet/modules/icingacli/manifests/init.pp b/.vagrant-puppet/modules/icingacli/manifests/init.pp new file mode 100644 index 000000000..7eef7833a --- /dev/null +++ b/.vagrant-puppet/modules/icingacli/manifests/init.pp @@ -0,0 +1,11 @@ +class icingacli { + file { '/usr/local/bin/icingacli': + ensure => link, + target => '/vagrant/bin/icingacli', + } + + file { '/etc/bash_completion.d/icingacli': + ensure => link, + target => '/vagrant/etc/bash_completion.d/icingacli', + } +}