24 lines
544 B
YAML
24 lines
544 B
YAML
|
- hosts: all
|
||
|
remote_user: hyung-hwan
|
||
|
tasks:
|
||
|
- name: Download GNU m4-1.14-19
|
||
|
get_url:
|
||
|
url=https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.gz
|
||
|
dest=/tmp/m4-1.14-19.tar.gz force=no
|
||
|
|
||
|
- name: Untar m4
|
||
|
unarchive:
|
||
|
src: /tmp/m4-1.14-19.tar.gz
|
||
|
dest: /tmp/
|
||
|
remote_src: yes
|
||
|
|
||
|
- name: Delete the m4 file downloaded
|
||
|
file:
|
||
|
path=/tmp/m4-1.14-19.tar.gz
|
||
|
state=absent
|
||
|
|
||
|
- name: Delete the m4 directory
|
||
|
file:
|
||
|
path=/tmp/m4-1.4.19/
|
||
|
state=absent
|