Compare commits

..

No commits in common. "429a756a6016c0b4b6793eaa6fba84f7e509f054" and "c299e505cfea88c5e836807df7599648c1287710" have entirely different histories.

5 changed files with 2 additions and 9 deletions

View File

@ -1 +0,0 @@
../inventory/group_vars

View File

@ -1 +0,0 @@
../inventory/host_vars

View File

@ -1,3 +0,0 @@
all:
hosts:
web3.desu.ltd:

View File

@ -2,7 +2,7 @@
- name: docker deploy netbox
docker_container:
name: netbox
image: netboxcommunity/netbox:v2.11
image: netboxcommunity/netbox:latest
env:
SUPERUSER_EMAIL: rehashedsalt@cock.li
SUPERUSER_PASSWORD: "{{ secret_netbox_user_pass }}"

View File

@ -3,7 +3,7 @@
- name: configure packages via apt
block:
- name: update apt packages
apt: upgrade=yes update_cache=yes cache_valid_time=86400
apt: upgrade=yes autoremove=yes update_cache=yes cache_valid_time=86400
- name: install basic packages
apt:
name:
@ -34,6 +34,4 @@
- whois
- name: remove basic packages
apt: state=absent name=unattended-upgrades
- name: autoremove
apt: autoremove=yes
when: ansible_os_family == "Debian"