--- - name: Update all packages to the latest version apt: upgrade: dist - name: Install packages apt: name: "{{ packages }}" vars: packages: - zsh - iotop - latencytop - htop - name: Cloning oh-my-zsh git: repo=https://github.com/robbyrussell/oh-my-zsh dest=~/.oh-my-zsh - name: Link ~/.zshrc file: src: /etc/pve/zshrc dest: ~/.zshrc state: link force: yes