Fr. 29 März 2019 18:37:59 CET in /home/jens/Development/ansible/roles/tweaks on deathbolt.927589452.space
This commit is contained in:
parent
0bf982b0f3
commit
3b5dabc3aa
4 changed files with 27 additions and 5 deletions
|
|
@ -23,17 +23,32 @@
|
|||
vars:
|
||||
sysctl_setting:
|
||||
- name: "ifconfig_DEFAULT"
|
||||
val: " inet6 DHCP"
|
||||
- name: "ifconfig_DEFAULT"
|
||||
val: "DHCP accept_rtadv"
|
||||
- name: "ifconfig_DEFAULT"
|
||||
val: "DHCP accept_rtadv"
|
||||
val: " inet6 DHCP accept_rtadv"
|
||||
# - name: "ifconfig_DEFAULT"
|
||||
# val: "DHCP accept_rtadv"
|
||||
#- name: "ifconfig_DEFAULT"
|
||||
#val: "DHCP accept_rtadv"
|
||||
- name: " ipv6_activate_all_interfaces"
|
||||
val: "YES"
|
||||
- name: "dhclient_program"
|
||||
val: "/usr/local/sbin/dual-dhclient"
|
||||
notify: restart dhclient
|
||||
|
||||
- name: "request rt_adv by default"
|
||||
sysctl:
|
||||
name: "net.inet6.ip6.accept_rtadv"
|
||||
value: 1
|
||||
become: true
|
||||
tags:
|
||||
- configuration
|
||||
|
||||
- name: "forward v6 packages"
|
||||
sysctl:
|
||||
name: "net.inet6.ip6.forward"
|
||||
value: 1
|
||||
become: true
|
||||
tags:
|
||||
- configuration
|
||||
# do i ned to disable the old dhclient?
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
---
|
||||
- include_tasks: vars.yml
|
||||
tags:
|
||||
- vars
|
||||
|
||||
- name: configure keyboard
|
||||
template:
|
||||
src: keyboard-conf.j2
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
loop_var: tweak
|
||||
loop:
|
||||
- FreeBSD-ipv6.yml
|
||||
- FreeBSD-printing.yml
|
||||
- FreeBSD-localunbound.yml
|
||||
- FreeBSD-bluetooth.yml
|
||||
- FreeBSD-sound.yml
|
||||
|
|
|
|||
|
|
@ -5,6 +5,8 @@
|
|||
|
||||
- name: Load OS specific vars, if available
|
||||
include_vars: "{{ lookup('first_found', params)}}"
|
||||
tags:
|
||||
- vars
|
||||
vars:
|
||||
params:
|
||||
files:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue