ansible icon indicating copy to clipboard operation
ansible copied to clipboard

hey! :)

Open tenhishadow opened this issue 3 years ago • 1 comments

Hi @ThePrimeagen

I watch your youtube channel, it's very nice, got this repo by github recommendations Please take a look on my repos, maybe you could get something from it ( e.g. instead of adding ppa, just use pipenv )

https://github.com/tenhishadow/dotfiles https://github.com/tenhishadow/ans-workstation

tenhishadow avatar Oct 05 '21 06:10 tenhishadow

as for your content:

- name: Install System Packages 3 (the rest)
  apt: name={{item}}
  with_items:
    - curl
    - htop

Could be replaced with just:

- name: install it
  package:
    name:
      - curl
      - htop

tenhishadow avatar Oct 05 '21 06:10 tenhishadow