mirror of
https://codeberg.org/ProgramSnail/config.git
synced 2026-03-12 04:57:08 +00:00
fixes with linter
This commit is contained in:
parent
932046cc39
commit
66109effc5
20 changed files with 124 additions and 111 deletions
|
|
@ -2,29 +2,25 @@
|
|||
hosts: localhost
|
||||
connection: local
|
||||
vars:
|
||||
configue:
|
||||
- bash
|
||||
- cli
|
||||
- git
|
||||
- ssh
|
||||
- scripts
|
||||
apps:
|
||||
- cli
|
||||
vars_prompt:
|
||||
- name: tools_in
|
||||
prompt: "Specify comma separated list of required tool packages (cpp, js, haskell, txt, lang)"
|
||||
pre_tasks:
|
||||
- name: Get tools list
|
||||
ansible.builtin.set_fact:
|
||||
tools: "{{ tools_in.split(',') }}"
|
||||
roles:
|
||||
# link and copy dotfiles
|
||||
- role: dotfiles
|
||||
vars:
|
||||
configue:
|
||||
- bash
|
||||
- cli
|
||||
- git
|
||||
- ssh
|
||||
- scripts
|
||||
|
||||
# install apps
|
||||
- role: installs
|
||||
vars:
|
||||
apps:
|
||||
- cli
|
||||
|
||||
# install and setup dev tools
|
||||
- role: dev
|
||||
vars:
|
||||
tools: "{{ tools_in.split(',') }}"
|
||||
|
||||
# TODO: repositories
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue