Compare commits
No commits in common. "cdfc7c2d9c7338afc46302254d012bd5b6208f18" and "1f45184d0c272529e9d68d98b223a111424169e0" have entirely different histories.
cdfc7c2d9c
...
1f45184d0c
2 changed files with 4 additions and 13 deletions
|
|
@ -251,12 +251,5 @@
|
|||
KERNEL=="mmcblk[0-9]", ENV{ID_NAME}=="?*", ENV{ID_SERIAL}=="?*", GROUP="domain users"
|
||||
KERNEL=="mmcblk[0-9]p[0-9]*", ENV{ID_NAME}=="?*", ENV{ID_SERIAL}=="?*", GROUP="domain users"
|
||||
|
||||
- name: Set KiCad 3Dmodel path
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/environment.d/90lmn-kicad.conf
|
||||
create: true
|
||||
mode: '0644'
|
||||
line: KICAD9_3DMODEL_DIR=/lmn/tools/KiCad/kicad-packages3D
|
||||
|
||||
- name: Include sync
|
||||
ansible.builtin.include_tasks: sync.yml
|
||||
|
|
|
|||
|
|
@ -13,17 +13,15 @@ ${filterchain}
|
|||
chain filterin_${interface} {
|
||||
type filter hook ingress device ${interface} priority filter; policy drop;
|
||||
ip saddr \$allowed_ipv4 accept
|
||||
ip saddr ${gateway} accept
|
||||
ip saddr 255.255.255.255 accept
|
||||
ether type arp accept
|
||||
ip saddr ${gateway} accept;
|
||||
ip saddr 255.255.255.255 accept;
|
||||
}
|
||||
|
||||
chain filterout_${interface} {
|
||||
type filter hook egress device ${interface} priority filter; policy drop;
|
||||
ip daddr \$allowed_ipv4 accept
|
||||
ip daddr ${gateway} accept
|
||||
ip daddr 255.255.255.255 accept
|
||||
ether type arp accept
|
||||
ip daddr ${gateway} accept;
|
||||
ip daddr 255.255.255.255 accept;
|
||||
}
|
||||
EOF
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue