Compare commits

...

9 Commits

Author SHA1 Message Date
Alex Kotov ac34d5ace8
Do not install unnecessary packages 2024-02-26 10:50:35 +04:00
Alex Kotov 9281ffc13e
Do not install "lolcat" 2024-02-26 10:44:10 +04:00
Alex Kotov cbf3ef3828
Add more platforms 2024-01-24 12:40:34 +04:00
Alex Kotov a853379753
Enable SSH TCPKeepAlive 2024-01-24 12:39:15 +04:00
Alex Kotov afdafefedf
Add more platforms 2023-03-28 12:38:40 +04:00
Alex Kotov 385bfcf577
Update basics.yml 2021-11-15 13:44:04 +05:00
Alex Kotov aef9f25799
Update basics.yml 2021-11-15 13:20:53 +05:00
Alex Kotov 5fa758cce8
Update basics.yml 2021-11-15 13:15:06 +05:00
Alex Kotov d6e5d0dbf1
Install unnecessary packages 2021-11-02 06:04:46 +05:00
4 changed files with 17 additions and 1 deletions

View File

@ -1,2 +1,3 @@
---
common__basics__unnecessary_packages: false
common__basics__additional_packages: []

View File

@ -17,8 +17,11 @@ galaxy_info:
versions:
- stretch # Debian 9 Stretch
- buster # Debian 10 Buster
- bullseye # Debian 11 Bullseye
- bookworm # Debian 12 Bookworm
- name: Ubuntu
versions:
- xenial # Ubuntu 16.04 LTS Xenial Xerus
- bionic # Ubuntu 18.04 LTS Bionic Beaver
- focal # Ubuntu 20.04 LTS Focal Fossa
- jammy # Ubuntu 22.04 LTS Jammy Jellyfish

View File

@ -10,14 +10,26 @@
- gnupg
- gnupg2
- gzip
- htop
- net-tools
- pkg-config
- procps
- psmisc
- software-properties-common
- unzip
- wget
- zip
- name: Install unnecessary packages
when: common__basics__unnecessary_packages | bool
apt:
name:
- cowsay
- figlet
- lolcat
- neofetch
- toilet
- name: Install additional packages
apt:
name: '{{ common__basics__additional_packages }}'

View File

@ -27,6 +27,6 @@
- regexp: '^#?X11Forwarding '
line: 'X11Forwarding no'
- regexp: '^#?TCPKeepAlive '
line: 'TCPKeepAlive no'
line: 'TCPKeepAlive yes'
- regexp: '^#?UseDNS '
line: 'UseDNS no'