Remove verbose
verbose is deprecated we dont need in README and site.pp Change-Id: Iae5d6e5752f6b717e5e6943bff9a44bc5c81a02b
This commit is contained in:
parent
df59fcbb3f
commit
9ecbadab2b
@ -373,12 +373,12 @@ puppet-swift is a combination of Puppet manifest and ruby code to deliver config
|
||||
The `swift_config` provider is a children of the ini_setting provider. It allows one to write an entry in the `/etc/swift/swift.conf` file.
|
||||
|
||||
```puppet
|
||||
swift_config { 'DEFAULT/verbose' :
|
||||
swift_config { 'DEFAULT/debug' :
|
||||
value => true,
|
||||
}
|
||||
```
|
||||
|
||||
This will write `verbose=true` in the `[DEFAULT]` section.
|
||||
This will write `debug=true` in the `[DEFAULT]` section.
|
||||
|
||||
##### name
|
||||
|
||||
|
@ -64,9 +64,6 @@ $keystone_admin_token = hiera('admin_token', 'service_token')
|
||||
$swift_keystone_admin_email = hiera('admin_email', 'keystone@localhost')
|
||||
$swift_keystone_admin_password = hiera('admin_password', 'ChangeMe')
|
||||
|
||||
$swift_verbose = hiera('verbose', 'True')
|
||||
|
||||
|
||||
# This node can be used to deploy a keystone service.
|
||||
# This service only contains the credentials for authenticating
|
||||
# swift
|
||||
@ -92,8 +89,7 @@ node 'swift-keystone' {
|
||||
}
|
||||
|
||||
class { '::keystone':
|
||||
verbose => $verbose,
|
||||
debug => $verbose,
|
||||
debug => $debug,
|
||||
catalog_type => 'sql',
|
||||
admin_token => $admin_token,
|
||||
enabled => $enabled,
|
||||
|
Loading…
Reference in New Issue
Block a user