Minor cleanup

This commit is contained in:
2022-05-27 23:14:06 -04:00
parent 330f2b5a91
commit 3a92921932
9 changed files with 12 additions and 39 deletions

View File

@@ -12,8 +12,3 @@
dest: "/etc/network/interfaces.d/{{ item.name }}"
loop: "{{ interfaces }}"
notify: reboot_host
- name: Install bridge utilities
apt:
name: bridge-utils
state: present

View File

@@ -10,12 +10,6 @@
dest: /root/.ssh/authorized_keys
when: authorized_keys is defined
- name: Install btrfs-tools
apt:
name: btrfs-tools
state: present
when: btrfs_support is defined and btrfs_support | bool == true
- name: Manage filesystem mounts
mount:
path: "{{ item.path }}"

View File

@@ -1,25 +1,3 @@
# Copyright (C) 2021 Kris Lamoureux
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
- name: Add Debian Buster backports
copy:
src: buster-backports.list
dest: /etc/apt/sources.list.d/buster-backports.list
owner: root
group: root
mode: '0644'
- name: Install WireGuard
apt:
name: wireguard