Yolanda Robla 492fd2351a Add rsync_proxy settings
Add the ability to setup rsync_proxy var into
our templates.

Change-Id: I4522aabe306513ce3c104140136e07cdd0ceb836
2015-07-20 15:13:45 +02:00

32 lines
949 B
Puppet

# Copyright 2015 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
# == Class: setproxy::http
#
# A class to manage HTTP proxy settings
class setproxy::http (
$http_proxy = undef,
$https_proxy = undef,
$rsync_proxy = undef,
$no_proxy = undef,
) {
file { '/etc/profile.d/http-proxy.sh':
ensure => file,
content => template('setproxy/profile_proxy.sh.erb'),
mode => '0755',
}
}