You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---
- name: run the playbook tasks on the localhosthosts: localhostbecome: Truevars:
useful_soft:
- apache2-utils # To use load testing utility 'ab'
- apt-file # To look for package with given binary name program
- curl
- lm-sensors
- python3-dev # To prevent 'fatal error: Python.h: No such file or directory' during install some Python extensions
- python3-distutils # To prevent during creating venv: ModuleNotFoundError: No module named 'distutils.core'
- python3-venv # To install virtual env: python3 -m venv newvenv
- tree
- vim-nox
- whois # To get info about domains
- xclip # To copy output to clipboard (see: http://sandipbgt.com/2015/10/22/copy-text-to-clipboard-from-terminal-in-ubuntu/)tasks:
- name: upgrade systemapt:
autoremove: Trueupdate_cache: Trueupgrade: distcache_valid_time: 3600
- name: install useful softapt:
name: "{{ useful_soft }}"update_cache: Truecache_valid_time: 3600