You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
- ---
-
- # user setup
- - import_tasks: root_user.yaml
- - import_tasks: fish.yaml
- - import_tasks: ssh-agent.yaml
-
- # system setup
- - import_tasks: hostname.yaml
- when:
- - not ansible_bender is defined
- - not container_type | default('') == 'podman'
-
- - import_tasks: locales.yaml
-
- - import_tasks: timezone.yaml
- when: not ansible_bender is defined
-
- - import_tasks: keyboard_configuration.yaml
- when: not ansible_bender is defined
-
- - import_tasks: network.yaml
-
- # packages setup
- - import_tasks: debian_repos.yaml
- when:
- - ansible_distribution == "Debian"
- - not ansible_lsb.id is defined or ansible_lsb.id != "Raspbian"
-
- - import_tasks: debian_packages.yaml
- when: ansible_distribution == "Debian"
|