Capitalize task names
We capitalize the first word in task names in general - and when you follow a log and suddenly see a single lower-case one flying along... Fix those names that I could find and that are not variables etc. Change-Id: I9ccde577413270d49fd790c41767b859366dc2f6
This commit is contained in:
parent
a8f234113f
commit
7e04128a8b
@ -1,4 +1,4 @@
|
||||
- name: remove bindep temp dir
|
||||
- name: Remove bindep temp dir
|
||||
file:
|
||||
path: "{{ bindep_temp_dir }}"
|
||||
state: absent
|
||||
|
@ -1,16 +1,16 @@
|
||||
- name: create temp dir for bindep
|
||||
- name: Create temp dir for bindep
|
||||
tempfile:
|
||||
state: directory
|
||||
prefix: bindep
|
||||
register: bindep_temp_dir
|
||||
notify:
|
||||
- remove bindep temp dir
|
||||
- Remove bindep temp dir
|
||||
|
||||
- name: Ensure we have pip dependencies
|
||||
include_role:
|
||||
name: ensure-pip
|
||||
|
||||
- name: install bindep into temporary venv
|
||||
- name: Install bindep into temporary venv
|
||||
pip:
|
||||
name: bindep
|
||||
virtualenv_command: '{{ ensure_pip_virtualenv_command }}'
|
||||
|
@ -1,4 +1,4 @@
|
||||
- name: gather needed facts
|
||||
- name: Gather needed facts
|
||||
when: ansible_pkg_mgr is not defined
|
||||
setup:
|
||||
gather_subset: pkg_mgr
|
||||
|
@ -1,9 +1,9 @@
|
||||
- name: set zypper base package repository (openSUSE Leap)
|
||||
- name: Set zypper base package repository (openSUSE Leap)
|
||||
set_fact:
|
||||
opensuse_repo_baseurl: "{{ package_mirror }}/distribution/leap/$releasever/repo/oss/"
|
||||
when: ansible_distribution is not search("Tumbleweed")
|
||||
|
||||
- name: set zypper base package repository (openSUSE Tumbleweed)
|
||||
- name: Set zypper base package repository (openSUSE Tumbleweed)
|
||||
set_fact:
|
||||
opensuse_repo_baseurl: "{{ package_mirror }}/tumbleweed/repo/oss/"
|
||||
when: ansible_distribution is search("Tumbleweed")
|
||||
|
@ -1,4 +1,4 @@
|
||||
- name: find all .md files
|
||||
- name: Find all .md files
|
||||
find:
|
||||
paths: "{{ zuul_work_dir }}"
|
||||
pattern: "*.md"
|
||||
|
@ -1,7 +1,7 @@
|
||||
- name: Remove ssh key
|
||||
command: "shred ~/.ssh/id_rsa"
|
||||
|
||||
- name: remove host key information from known hosts
|
||||
- name: Remove host key information from known hosts
|
||||
known_hosts:
|
||||
name: "{{ ssh_key.fqdn }}"
|
||||
key: "{{ ssh_key.ssh_known_hosts }}"
|
||||
|
@ -16,7 +16,7 @@
|
||||
set_fact:
|
||||
zuul_log_path: "{{ zuul.pipeline }}/{{ zuul.project.canonical_name }}/{{ zuul.branch }}/{{ zuul.job }}/{{ zuul.build[:7] }}"
|
||||
|
||||
- name: object store friendly log path specifications
|
||||
- name: Object store friendly log path specifications
|
||||
when: zuul_log_path_shard_build
|
||||
block:
|
||||
- name: Set log path for a change
|
||||
|
Loading…
Reference in New Issue
Block a user