X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fcinder%2Fmanifests%2Fquota.pp;fp=3rdparty%2Fmodules%2Fcinder%2Fmanifests%2Fquota.pp;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=4542d468f4944cf4772cd50b8191b2bf466c81e6;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/cinder/manifests/quota.pp b/3rdparty/modules/cinder/manifests/quota.pp deleted file mode 100644 index 4542d468f..000000000 --- a/3rdparty/modules/cinder/manifests/quota.pp +++ /dev/null @@ -1,34 +0,0 @@ -# == Class: cinder::quota -# -# Setup and configure Cinder quotas. -# -# === Parameters -# -# [*quota_volumes*] -# (optional) Number of volumes allowed per project. Defaults to 10. -# -# [*quota_snapshots*] -# (optional) Number of volume snapshots allowed per project. Defaults to 10. -# -# [*quota_gigabytes*] -# (optional) Number of volume gigabytes (snapshots are also included) -# allowed per project. Defaults to 1000. -# -# [*quota_driver*] -# (optional) Default driver to use for quota checks. -# Defaults to 'cinder.quota.DbQuotaDriver'. -# -class cinder::quota ( - $quota_volumes = 10, - $quota_snapshots = 10, - $quota_gigabytes = 1000, - $quota_driver = 'cinder.quota.DbQuotaDriver' -) { - - cinder_config { - 'DEFAULT/quota_volumes': value => $quota_volumes; - 'DEFAULT/quota_snapshots': value => $quota_snapshots; - 'DEFAULT/quota_gigabytes': value => $quota_gigabytes; - 'DEFAULT/quota_driver': value => $quota_driver; - } -}