working v6
This commit is contained in:
commit
77780ff216
11 changed files with 329 additions and 0 deletions
19
tasks/FreeBSD-reader.yml
Normal file
19
tasks/FreeBSD-reader.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
- name: load modules for the sdcardreader
|
||||
lineinfile:
|
||||
path: "/boot/loader.conf"
|
||||
regexp: "^{{ item.name }}"
|
||||
line: "{{ item.name }}={{ item.val }}"
|
||||
become: true
|
||||
loop: "{{ sysctl_setting }}"
|
||||
vars:
|
||||
sysctl_setting:
|
||||
- name: "sdhcii_load"
|
||||
val: 1
|
||||
- name: "mmcsd_load"
|
||||
val: 1
|
||||
- name: "mmc_load"
|
||||
val: 1
|
||||
tags:
|
||||
- configuration
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue