alpine-laptop

Ansible playbooks for Alpine + Xfce laptop setup
git clone https://www.brianlane.com/git/alpine-laptop
Log | Files | Refs

applications.yml (283B)


      1 ---
      2 - hosts: laptop
      3   tasks:
      4     - name: Install applications
      5       apk:
      6         name:
      7           - atop
      8           - vim
      9           - git
     10           - firefox
     11           - shadow
     12           - shadow-doc
     13           - vlc
     14           - vlc-doc
     15         state: latest
     16         update_cache: true