This patch adds the Debian jobs for this role to make sure it's always passing as well as updates the meta to reflect it's support of Debian accordingly. It also clean-up an old variable which is carried for upgrades that is no longer relevant now. A new variable has been added to ensure pre-packages, which have been generally assumed to be installed as a base OS package, have been installed before installing the application or configuring the system via the role. Depends-On: I135ea73604890eae5e9e2a7cdcab81b2b39ad426 Change-Id: I19094b540aff81b7aa029880e404a2990f82e538 Signed-off-by: Kevin Carter <kevin@cloudnull.com>
32 lines
1014 B
YAML
32 lines
1014 B
YAML
---
|
|
# Copyright 2016, Rackspace US, Inc.
|
|
#
|
|
# 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.
|
|
|
|
## APT Cache options
|
|
cache_timeout: 600
|
|
|
|
haproxy_distro_pre_packages:
|
|
- rsyslog # Used for local logging
|
|
|
|
haproxy_distro_packages:
|
|
- haproxy
|
|
- netcat # Used for the Ansible haproxy module
|
|
- psmisc
|
|
- vim-haproxy
|
|
|
|
# On Debian rsyslog runs as the "root" user, so have the
|
|
# HAProxy log directory be owned by the same user so that rsyslog can write
|
|
# HAProxy's logs to that directory.
|
|
haproxy_log_directory_owner: root
|