c659733d39
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: I00cf4846bb933291469be94c9debed425eddf798
48 lines
1.0 KiB
Puppet
48 lines
1.0 KiB
Puppet
# == Class: swift::test_file
|
|
#
|
|
# Deploys a file that can be used to verify your swift installation.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*password*]
|
|
# password used with tenant/user combination against auth_server. Required.
|
|
# [*auth_server*]
|
|
# server hosting keystone. Optional. Defaults to 127.0.0.1.
|
|
# [*tenant*]
|
|
# tenant used for authentication (required for retrieval of catalog). Optional. Defaults to openstack.
|
|
# [*user*]
|
|
# authenticated user. Optional. Defaults to 'admin'.
|
|
#
|
|
# === Examples
|
|
#
|
|
# class { 'swift::test_file':
|
|
# auth_server => '172.16.0.25',
|
|
# tenant => 'services',
|
|
# user => 'swift',
|
|
# password => 'admin_password',
|
|
# }
|
|
#
|
|
# === Authors
|
|
#
|
|
# Dan Bode <bodepd@gmail.com>
|
|
#
|
|
# === Copyright
|
|
#
|
|
# Copyright 2011 PuppetLabs.
|
|
#
|
|
class swift::test_file (
|
|
$password,
|
|
$auth_server = '127.0.0.1',
|
|
$tenant = 'openstack',
|
|
$user = 'admin'
|
|
) {
|
|
|
|
include ::swift::deps
|
|
|
|
file { '/tmp/swift_test_file.rb':
|
|
mode => '0755',
|
|
content => template('swift/swift_keystone_test.erb'),
|
|
tag => 'swift-file',
|
|
}
|
|
}
|