Skip to content
Snippets Groups Projects
Commit 9a1a8532 authored by Dmitriy Safronov's avatar Dmitriy Safronov
Browse files

fix

parent 2a44a156
No related branches found
No related tags found
No related merge requests found
---
# APT
- name: Install aptitude & debconf-utils using apt
apt:
state: present
update_cache: yes
force_apt_get: yes
install_recommends: no
pkg:
- aptitude
- debconf-utils
# ESSENTIAL PACKAGES
- name: Install packages
apt:
state: present
update_cache: yes
install_recommends: no
pkg:
- bash
- mawk
- sed
- grep
- rsync
...@@ -4,6 +4,29 @@ ...@@ -4,6 +4,29 @@
- name: Setup repositories - name: Setup repositories
include_tasks: repositories.yml include_tasks: repositories.yml
# ESSENTIAL SETUP
- name: Perform essential setup ## ESSENTIAL SETUP
include_tasks: essential.yml
# APT
- name: Install aptitude & debconf-utils using apt
apt:
state: present
update_cache: yes
force_apt_get: yes
install_recommends: no
pkg:
- aptitude
- debconf-utils
# ESSENTIAL PACKAGES
- name: Install packages
apt:
state: present
update_cache: yes
install_recommends: no
pkg:
- bash
- mawk
- sed
- grep
- rsync
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment