role_pfetch/tasks/main.yml

24 lines
559 B
YAML

---
###########################################################
#
###########################################################
# tasks file for pfetch
- name: Copy pfetch launch script to /etc/profile.d
copy:
src: files/pfetch.sh
dest: /etc/profile.d/pfetch.sh
mode: "0755"
owner: root
group: root
- name: Copy pfetch script https://github.com/dylanaraps/pfetch
get_url:
url: https://raw.githubusercontent.com/dylanaraps/pfetch/master/pfetch
dest: /usr/local/bin/pfetch
mode: "0755"
owner: root
group: root
# EOF