Commit ff1abf74 by Michael Roytman

remove any tasks concerning hpi or jpi files

parent f1c95436
---
- name: Get the list of hpi files
shell: "ls {{ jenkins_home }}/plugins/*.hpi"
register: hpi_files
ignore_errors: true
tags:
- install
- install:app-configuration
- name: Set the permission on hpi files
file:
path: "{{ item }}"
owner: "{{ jenkins_user }}"
group: "{{ jenkins_group }}"
mode: 0644
with_items: "{{ hpi_files.stdout_lines }}"
when: hpi_files
notify:
- restart Jenkins
tags:
- install
- install:app-configuration
- name: Get the list of jpi files
shell: "ls {{ jenkins_home }}/plugins/*.jpi"
register: jpi_files
ignore_errors: true
tags:
- install
- install:app-configuration
- name: Set the permission on jpi files
file:
path: "{{ item }}"
owner: "{{ jenkins_user }}"
group: "{{ jenkins_group }}"
mode: 0644
with_items: "{{ jpi_files.stdout_lines }}"
when: jpi_files
notify:
- restart Jenkins
tags:
- install
- install:app-configuration
# The deadsnakes PPA is required to install python3.5 on Precise and Trusty.
# Xenial comes with python3.5 installed.
- name: add deadsnakes repository
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment