remove unused manifest populate_hiera.pp

Change-Id: I7a394a7ec61f413e8276da93967ab3b0309fbc85
This commit is contained in:
Igor Gajsin 2016-09-20 17:54:04 +03:00
parent 95e4d15b8c
commit 02d05319ad
1 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
notify {'MODULAR: fuel-plugin-manila/populate_hiera': }
$manila = hiera_hash('manila', false)
$fpg_manila = hiera_hash('fuel-plugin-manila', {})
$file = '/etc/hiera/plugins/fuel-plugin-manila.yaml'
$new_password = generate("/bin/bash", "-c", "/bin/date +%s | sha256sum | base64 | head -c 32 ; echo -n")
$db_password = generate("/bin/bash", "-c", "sleep 1; /bin/date +%s | sha256sum | base64 | head -c 32 ; echo -n")
$image_name = 'manila-service-image'
$service_image = $fpg_manila['fuel-plugin-manila_image']
$img_data = {
container_format => 'bare',
disk_format => 'qcow2',
glance_properties => '',
img_name => $image_name,
img_path => "/tmp/${service_image}",
min_ram => 256,
os_name => 'ubuntu',
public => 'true',
}
if ! $manila {
populate_hiera($file, 'user_password', $new_password)
populate_hiera($file, 'db_password', $db_password)
populate_hiera($file, 'service_vm_image', $img_data)
}