mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
10 lines
457 B
YAML
10 lines
457 B
YAML
|
- name: pull swapfile creating script
|
||
|
git:
|
||
|
repo: "git@github.com:kevinveenbirkenbach/create-linux-swapfile.git"
|
||
|
dest: "$HOME/Repositories/github.com/kevinveenbirkenbach/create-linux-swapfile"
|
||
|
update: yes
|
||
|
become: false
|
||
|
|
||
|
- name: Execute create swapfile script
|
||
|
ansible.builtin.shell: bash "/home/{{client_username}}/Repositories/github.com/kevinveenbirkenbach/create-linux-swapfile/create-linux-swapfile.sh" "{{swapfile_size}}"
|
||
|
become: true
|