This repository has been archived on 2021-09-08. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-04-16 12:59:28 -04:00
|
|
|
---
|
|
|
|
- name: localdev configuration
|
|
|
|
hosts: all
|
|
|
|
tasks:
|
|
|
|
|
|
|
|
- name: Install the packages for Fedora
|
|
|
|
import_tasks: dnf.yml
|
|
|
|
when: ansible_facts['os_family']|lower == 'redhat'
|
|
|
|
|
|
|
|
- name: Install the packages for Debian
|
|
|
|
import_tasks: apt.yml
|
|
|
|
when: ansible_facts['os_family']|lower == 'debian'
|
|
|
|
|
|
|
|
- name: Install the packages for Ubuntu
|
|
|
|
import_tasks: apt.yml
|
|
|
|
when: ansible_facts['os_family']|lower == 'ubuntu'
|
|
|
|
|
|
|
|
- name: Install the packages for FreeBSD
|
|
|
|
import_tasks: pkg.yml
|
|
|
|
when: ansible_facts['os_family']|lower == 'freebsd'
|
|
|
|
|
|
|
|
- name: Install rust via rustup
|
|
|
|
import_tasks: rust.yml
|
|
|
|
|
2021-04-16 13:44:27 -04:00
|
|
|
- name: Configure gnome settings
|
|
|
|
import_tasks: gnome.yml
|
2021-04-16 14:50:30 -04:00
|
|
|
|
|
|
|
- name: Install bitwarden cli
|
|
|
|
import_tasks: bitwarden.yml
|
|
|
|
|
|
|
|
- name: Install chezmoi
|
|
|
|
import_tasks: chezmoi.yml
|
|
|
|
|
|
|
|
- name: Install and configure golang
|
|
|
|
import_tasks: go.yml
|
|
|
|
|
|
|
|
- name: Install cloud tools
|
|
|
|
import_tasks: cloud-tools.yml
|