puppet-zaqar/manifests/transport/wsgi.pp
Tobias Urdin ce76a91f62 Convert all class usage to relative names
Change-Id: Ieb9a1d2c1dcef360ca7a323fe4f6cdbb61feecfe
2019-12-08 23:26:05 +01:00

24 lines
504 B
Puppet

# == class: zaqar::transport::wsgi
#
# [*bind*]
# Address on which the self-hosting server will listen.
# Defaults to $::os_service_default.
#
# [*port*]
# Port on which the self-hosting server will listen.
# Defaults to $::os_service_default.
#
class zaqar::transport::wsgi(
$bind = $::os_service_default,
$port = $::os_service_default,
) {
include zaqar::deps
zaqar_config {
'drivers:transport:wsgi/bind': value => $bind;
'drivers:transport:wsgi/port': value => $port;
}
}