Format files with ansible-lint
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
---
|
||||
# defaults file for eget
|
||||
eget_version: '1.3.4'
|
||||
eget_download_url: 'https://github.com/zyedidia/eget/releases/download/v{{ eget_version }}/eget-{{ eget_version }}-linux_amd64.tar.gz'
|
||||
eget_install_path: '/usr/bin/eget'
|
||||
eget_version: "1.3.4"
|
||||
eget_download_url: "https://github.com/zyedidia/eget/releases/download/v{{ eget_version }}/eget-{{ eget_version }}-linux_amd64.tar.gz"
|
||||
eget_install_path: "/usr/bin/eget"
|
||||
|
||||
eget_download_dest: '/tmp/{{ eget_download_url | split("/") | last }}'
|
||||
eget_unarchive_dest: '{{ eget_download_dest | regex_replace("(\.tar\.gz|\.zip)$", "") }}'
|
||||
|
@ -1,6 +1,7 @@
|
||||
---
|
||||
galaxy_info:
|
||||
author: 'Anton Vakhrushev'
|
||||
description: 'Role for installation eget utility'
|
||||
author: "Anton Vakhrushev"
|
||||
description: "Role for installation eget utility"
|
||||
|
||||
# If the issue tracker for your role is not on github, uncomment the
|
||||
# next line and provide a value
|
||||
@ -13,9 +14,9 @@ galaxy_info:
|
||||
# - GPL-3.0-only
|
||||
# - Apache-2.0
|
||||
# - CC-BY-4.0
|
||||
license: 'MIT'
|
||||
license: "MIT"
|
||||
|
||||
min_ansible_version: '2.1'
|
||||
min_ansible_version: "2.1"
|
||||
|
||||
# If this a Container Enabled role, provide the minimum Ansible Container version.
|
||||
# min_ansible_container_version:
|
||||
|
@ -1,30 +1,30 @@
|
||||
---
|
||||
- name: 'Download eget from url "{{ eget_download_url }}"'
|
||||
ansible.builtin.get_url:
|
||||
url: '{{ eget_download_url }}'
|
||||
dest: '{{ eget_download_dest }}'
|
||||
mode: '0600'
|
||||
url: "{{ eget_download_url }}"
|
||||
dest: "{{ eget_download_dest }}"
|
||||
mode: "0600"
|
||||
|
||||
- name: 'Unarchive eget'
|
||||
- name: "Unarchive eget"
|
||||
ansible.builtin.unarchive:
|
||||
src: '{{ eget_download_dest }}'
|
||||
dest: '/tmp'
|
||||
src: "{{ eget_download_dest }}"
|
||||
dest: "/tmp"
|
||||
list_files: true
|
||||
remote_src: true
|
||||
|
||||
- name: 'Install eget binary'
|
||||
- name: "Install eget binary"
|
||||
ansible.builtin.copy:
|
||||
src: '{{ (eget_unarchive_dest, "eget") | path_join }}'
|
||||
dest: '{{ eget_install_path }}'
|
||||
mode: '0755'
|
||||
dest: "{{ eget_install_path }}"
|
||||
mode: "0755"
|
||||
remote_src: true
|
||||
|
||||
- name: 'Remove temporary files'
|
||||
- name: "Remove temporary files"
|
||||
ansible.builtin.file:
|
||||
path: '{{ eget_download_dest }}'
|
||||
path: "{{ eget_download_dest }}"
|
||||
state: absent
|
||||
|
||||
- name: 'Remove temporary directories'
|
||||
- name: "Remove temporary directories"
|
||||
ansible.builtin.file:
|
||||
path: '{{ eget_unarchive_dest }}'
|
||||
path: "{{ eget_unarchive_dest }}"
|
||||
state: absent
|
||||
|
@ -1,24 +1,24 @@
|
||||
---
|
||||
# tasks file for eget
|
||||
|
||||
- name: 'Check if eget installed'
|
||||
- name: "Check if eget installed"
|
||||
ansible.builtin.command:
|
||||
cmd: '{{ eget_install_path }} --version'
|
||||
cmd: "{{ eget_install_path }} --version"
|
||||
register: eget_installed_output
|
||||
ignore_errors: true
|
||||
changed_when: false
|
||||
|
||||
- name: 'Check eget installed version'
|
||||
- name: "Check eget installed version"
|
||||
ansible.builtin.set_fact:
|
||||
eget_need_install: '{{ not (eget_installed_output.rc == 0 and eget_version in eget_installed_output.stdout) }}'
|
||||
eget_need_install: "{{ not (eget_installed_output.rc == 0 and eget_version in eget_installed_output.stdout) }}"
|
||||
|
||||
- name: 'Assert that installation flag is defined'
|
||||
- name: "Assert that installation flag is defined"
|
||||
ansible.builtin.assert:
|
||||
that:
|
||||
- eget_need_install is defined
|
||||
- eget_need_install is boolean
|
||||
|
||||
- name: 'Download eget and install eget'
|
||||
- name: "Download eget and install eget"
|
||||
ansible.builtin.include_tasks:
|
||||
file: 'install.yml'
|
||||
file: "install.yml"
|
||||
when: eget_need_install
|
||||
|
@ -27,7 +27,8 @@
|
||||
|
||||
- name: "Prepare env variables."
|
||||
ansible.builtin.set_fact:
|
||||
env_dict: '{{ owner_env | combine({"CURRENT_UID": user_create_result.uid | default(owner_name), "CURRENT_GID": user_create_result.group | default(owner_group)}) }}'
|
||||
env_dict: '{{ owner_env | combine({"CURRENT_UID": user_create_result.uid | default(owner_name), "CURRENT_GID": user_create_result.group | default(owner_group)})
|
||||
}}'
|
||||
|
||||
- name: 'Set up environment variables for user "{{ owner_name }}".'
|
||||
ansible.builtin.template:
|
||||
|
Reference in New Issue
Block a user