From 1732924a4dac3bb3c88064b93751b213bad35e1d Mon Sep 17 00:00:00 2001 From: MrDoobPG <46342172+MrDoobPG@users.noreply.github.com> Date: Fri, 25 Oct 2019 23:02:53 +0200 Subject: [PATCH] debian 9 item.packages rsync add new layout --- menu/dependency/dependency.yml | 1 + menu/dependency/dependencydeb.yml | 75 ++++++++++++++++--------------- 2 files changed, 39 insertions(+), 37 deletions(-) diff --git a/menu/dependency/dependency.yml b/menu/dependency/dependency.yml index 58f20904..df709fd4 100644 --- a/menu/dependency/dependency.yml +++ b/menu/dependency/dependency.yml @@ -46,6 +46,7 @@ - { package: 'python-lxml' } - { package: 'acl' } - { package: 'python-apt' } + - { package: 'rsync' } - name: Update pip packages for python3 pip: diff --git a/menu/dependency/dependencydeb.yml b/menu/dependency/dependencydeb.yml index 01f9a4e0..032df397 100644 --- a/menu/dependency/dependencydeb.yml +++ b/menu/dependency/dependencydeb.yml @@ -10,44 +10,45 @@ gather_facts: True tasks: - name: Install Common Packages (Takes Awhile) - apt: 'name={{item}} state=present' + apt: 'name={{item.package}} state=present' with_items: - - fuse - - nano - - fail2ban - - wget - - lsb-release - - figlet - - software-properties-common - - unzip - - glances - - python-pip - - python3-pip - - python-passlib - - zip - - curl - - man-db - - htop - - openssh-server - - dirmngr - - zip - - apt-transport-https - - ca-certificates - - tree - - ncdu - - ctop - - dialog - - dnsutils - - mc - - apache2-utils - - lsof - - pwgen - - gawk - - python-lxml - - acl - - bc - - gnupg2 - - python-apt + - { package: 'fuse' } + - { package: 'nano' } + - { package: 'fail2ban' } + - { package: 'wget' } + - { package: 'lsb-release' } + - { package: 'figlet' } + - { package: 'software-properties-common' } + - { package: 'unzip' } + - { package: 'glances' } + - { package: 'python-pip' } + - { package: 'python3-pip' } + - { package: 'python-passlib' } + - { package: 'zip' } + - { package: 'curl' } + - { package: 'man-db' } + - { package: 'htop' } + - { package: 'openssh-server' } + - { package: 'dirmngr' } + - { package: 'zip' } + - { package: 'apt-transport-https' } + - { package: 'ca-certificates' } + - { package: 'tree' } + - { package: 'ncdu' } + - { package: 'ctop' } + - { package: 'dialog' } + - { package: 'dnsutils' } + - { package: 'mc' } + - { package: 'apache2-utils' } + - { package: 'lsof' } + - { package: 'pwgen' } + - { package: 'gawk' } + - { package: 'python-lxml' } + - { package: 'acl' } + - { package: 'bc' } + - { package: 'gnupg2' } + - { package: 'python-apt' } + - { package: 'rsync' } - name: Update pip packages for python3 pip: