Sha256: 93b7e854a0d39096ac711a9edacda4aed11dbecf3db9b7cc4d696c9c12194dd1

Contents?: true

Size: 1015 Bytes

Versions: 13

Compression:

Stored size: 1015 Bytes

Contents

# tasks file for htop
---
- name: install
  apt:
    name: "{{ item }}"
    state: "{{ apt_install_state | default('latest') }}"
    update_cache: true
    cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
  with_items: "{{ htop_dependencies }}"
  tags:
    - configuration
    - htop
    - htop-install

- name: create configuration directory
  file:
    path: "{{ item.value.dest }}"
    state: directory
  with_dict: "{{ htop_htoprc_destinations }}"
  tags:
    - configuration
    - htop
    - htop-configuration

- name: create configuration file
  copy:
    src: etc/skel/.config/htop/htoprc
    dest: "{{ item.value.dest }}/htoprc"
    owner: "{{ item.value.owner | default('root') }}"
    group: "{{ item.value.group | default(item.value.owner) | default('root') }}"
    mode: "{{ item.value.mode | default('0644') }}"
    force: "{{ 'yes' if htop_replace_htoprc else 'no' }}"
  with_dict: "{{ htop_htoprc_destinations }}"
  tags:
    - configuration
    - htop
    - htop-configuration

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
taperole-2.1.1 vendor/tersmitten.htop/tasks/main.yml
taperole-2.1.0 vendor/tersmitten.htop/tasks/main.yml
taperole-2.0.7 vendor/tersmitten.htop/tasks/main.yml
taperole-2.0.6 vendor/tersmitten.htop/tasks/main.yml
taperole-2.0.5 vendor/tersmitten.htop/tasks/main.yml
taperole-2.0.4 vendor/tersmitten.htop/tasks/main.yml
taperole-2.0.3 vendor/tersmitten.htop/tasks/main.yml
taperole-2.0.2 vendor/tersmitten.htop/tasks/main.yml
taperole-2.0.1 vendor/tersmitten.htop/tasks/main.yml
taperole-2.0.0 vendor/tersmitten.htop/tasks/main.yml
taperole-1.8.2 vendor/tersmitten.htop/tasks/main.yml
taperole-1.8.1 vendor/tersmitten.htop/tasks/main.yml
taperole-1.8.0 vendor/tersmitten.htop/tasks/main.yml