13 lines
277 B
ObjectPascal
13 lines
277 B
ObjectPascal
|
class test (
|
||
|
$package_name = $test::params::package_name,
|
||
|
$service_name = $test::params::service_name,
|
||
|
) inherits test::params {
|
||
|
|
||
|
# validate parameters here
|
||
|
|
||
|
class { 'test::install': } ->
|
||
|
class { 'test::config': } ~>
|
||
|
class { 'test::service': } ->
|
||
|
Class['test']
|
||
|
}
|