This commit is contained in:
2023-04-06 11:53:54 +02:00
parent 912ec16cdb
commit 12c86849c2
59 changed files with 1065 additions and 102 deletions

View File

@ -840,11 +840,15 @@ apt_install_postgresql_pkgs: false
apt_postgresql_pkgs:
- postgresql
apt_install_bind9_packages: false
apt_bind9_pkgs:
install_bind_packages: false
apt_bind_pkgs:
- bind9
apt_install_lxc_host_pkgs: false
yum_bind_pks:
- bind
install_lxc_host_pkgs: false
apt_lxc_host_pkgs:
- bridge-utils
- lxc
@ -854,7 +858,16 @@ apt_lxc_host_pkgs:
- debootstrap
- ntp
apt_install_kvm_host_pkgs: false
yum_lxc_host_pkgs:
- bridge-utils
- lxc
- lxc-templates
- python36-lxc
- debootstrap
- ntp
install_kvm_host_pkgs: false
apt_kvm_host_pkgs:
- lvm2
- bridge-utils
@ -893,6 +906,136 @@ microcode_package:
- amd64-microcode
# ---
# vars used by yum.yml
# ---
yum_install_state: latest
yum_ansible_dependencies:
- ca-certificates
- dbus
- redhat-lsb-core
- mc
- net-tools
- openssl
- python3
- sudo
- vim
yum_base_install_centos_7:
- redhat-lsb-core
- ca-certificates
- git
- iproute
- mc
- net-tools
- bind-utils
- openssl
- python2
- python3
- sudo
- vim
- yum-utils
yum_initial_install_centos_7:
- cryptsetup
- dbus
- openssh-server
- bash
- bash-completion
- vim
- vim-common
- mc
- screen
- tmux
- cronie
- bc
- figlet
- sudo
- rsync
- dselect
- iputils
- zip
- unzip
- bzip2
- arj
- mlocate
- curl
- gawk
- mawk
- lynx
- links
- w3m
- ctags
- file
- coreutils
- moreutils
- less
- sipcalc
- psmisc
- whois
- gettext
- gettext-devel
- debian-keyring
- patch
- patchutils
- recode
- recode-devel
- sharutils
- perl
- perl-devel
- readline
- readline-devel
- libtermkey
- libtermkey-devel
- perl-Time-Duration-Parse
- perl-DateTime
- perl-libwww-perl
- pcre
- pcre2
- perl-IO-Compress
- re2c
- util-linux
- parted
- lshw
- gdisk
- smartmontools
- tcpdump
- telnet
- unhide
- lsof
- hdparm
- groff
- bridge-utils
- ethtool
- nwipe
- iperf
- mtr
- iptraf
- wget
- logrotate
- rsyslog
- haveged
- rdate
- ntpdate
- man
- groff
- iptables
- ShellCheck
- ftp
- htop
- net-tools
- attr
- acl
- quota
- quotatool
- needrestart
- socat
- zsh
- lua
- btrfs-progs
# ---
# vars used by tor.yml
# ---
@ -1893,6 +2036,33 @@ samba_cronjob_permissions:
job: "/root/bin/samba/set_permissions_samba_shares.sh"
# ==========
# vars used by roles/common/tasks/systemd-services.yml
# ==========
# Take care that if these services are installed, they are running and
# start automatically after boot.
#
debian_services_active_and_started:
- bind
- cron
- haveged
- ntp
- redis-server
- ssh
- tor
redhat_services_active_and_started:
- crond
- haveged
- named
- ntpd
- redis
- sshd
- tor
# ==============================