-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add task to the bootstrap role for creating and enabling a file based swap area.
- Loading branch information
1 parent
eddfad4
commit e376f2b
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
|
||
# | ||
# Creates a swap file on Linux. | ||
# Assumes swap_file_size_mb has been set. | ||
# | ||
|
||
- name: create swapfile | ||
ansible.builtin.command: | ||
cmd: dd if=/dev/zero of=/{{ swap_file }} bs=1M count={{ swap_file_size_mb }} | ||
creates: "{{ swap_file }}" | ||
become: yes | ||
become_user: root | ||
register: swap_create | ||
|
||
- name: set swapfile permissions | ||
ansible.builtin.file: | ||
group: root | ||
mode: 0600 | ||
owner: root | ||
path: "{{ swap_file }}" | ||
|
||
- name: set up swap area | ||
ansible.builtin.command: | ||
cmd: mkswap {{ swap_file }} | ||
when: swap_create.changed | ||
|
||
- name: enable swap | ||
ansible.builtin.command: | ||
cmd: swapon {{ swap_file }} | ||
when: swap_create.changed | ||
|
||
- name: add swap to fstab | ||
ansible.posix.mount: | ||
fstype: swap | ||
opts: defaults | ||
path: swap | ||
src: "{{ swap_file }}" | ||
state: present | ||
when: swap_create.changed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
autologon_regpath: 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon' | ||
swap_file: /swapfile |