Skip to content

remove dns settings and port 53 reqs #195

remove dns settings and port 53 reqs

remove dns settings and port 53 reqs #195

name: Update Homelab Servers
on:
push:
branches:
- main
- overhaul
workflow_dispatch:
jobs:
deploy:
runs-on: "self-hosted"
steps:
- uses: actions/checkout@v4
- name: install ansible
run: sudo apt-get install -y ansible
- name: Run gateway playbook
uses: dawidd6/action-ansible-playbook@v2
with:
playbook: gateway.yml
directory: ./
vault_password: ${{secrets.VAULT_PASSWORD}}
requirements: requirements.yml
inventory: |
[all]
gateway
configuration: |
[defaults]
host_key_checking = False
[ssh_connections]
pipelining = true
options: |
--inventory .hosts
--verbose
- name: Run homeserver playbook
uses: dawidd6/action-ansible-playbook@v2
with:
playbook: homeserver.yml
directory: ./
vault_password: ${{secrets.VAULT_PASSWORD}}
requirements: requirements.yml
inventory: |
[all]
homeserver
configuration: |
[defaults]
host_key_checking = False
ask_sudo_pass = True
[ssh_connections]
pipelining = true
options: |
--inventory .hosts
--verbose