Remove the adiscon/v8 ppa

The adiscon/v8 ppa has has occasional availability issues which
have resulted in failed deployments. This ppa can be removed
without impacting the stack as the new features in rsyslog it
provides are not used by this project.

Change-Id: Iec55db3b6e20b3661459c639e2a48ff755c001ef
Closes-Bug: #1467118
This commit is contained in:
kevin 2015-06-23 14:09:40 -05:00 committed by Jesse Pretorius
parent 60c7837ad5
commit 54dfd20c83
4 changed files with 6 additions and 4 deletions

View File

@ -13,8 +13,8 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
rsyslog_client_apt_repos: # rsyslog_client_apt_repos:
- { repo: "ppa:adiscon/v8-stable", state: "present" } # - { repo: "ppa:adiscon/v8-stable", state: "present" }
rsyslog_client_apt_packages: rsyslog_client_apt_packages:
- rsyslog - rsyslog

View File

@ -18,6 +18,7 @@
repo: "{{ item.repo }}" repo: "{{ item.repo }}"
state: "{{ item.state }}" state: "{{ item.state }}"
with_items: rsyslog_client_apt_repos with_items: rsyslog_client_apt_repos
when: rsyslog_client_apt_repos is defined
register: add_repos register: add_repos
until: add_repos|success until: add_repos|success
retries: 5 retries: 5

View File

@ -13,8 +13,8 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
rsyslog_server_apt_repos: # rsyslog_server_apt_repos:
- { repo: "ppa:adiscon/v8-stable", state: "present" } # - { repo: "ppa:adiscon/v8-stable", state: "present" }
rsyslog_server_apt_packages: rsyslog_server_apt_packages:
- rsyslog - rsyslog

View File

@ -18,6 +18,7 @@
repo: "{{ item.repo }}" repo: "{{ item.repo }}"
state: "{{ item.state }}" state: "{{ item.state }}"
with_items: rsyslog_server_apt_repos with_items: rsyslog_server_apt_repos
when: rsyslog_server_apt_repos is defined
register: add_repos register: add_repos
until: add_repos|success until: add_repos|success
retries: 5 retries: 5