share ssh dir with toolbox and add python cli tool
This commit is contained in:
parent
ebed161f7b
commit
affb9d20ed
1 changed files with 7 additions and 2 deletions
|
@ -15,6 +15,7 @@
|
||||||
name:
|
name:
|
||||||
- hg-evolve
|
- hg-evolve
|
||||||
- python-lsp-server
|
- python-lsp-server
|
||||||
|
- linode-cli
|
||||||
extra_args: --user
|
extra_args: --user
|
||||||
|
|
||||||
- name: Setup bin directory
|
- name: Setup bin directory
|
||||||
|
@ -29,8 +30,6 @@
|
||||||
state: directory
|
state: directory
|
||||||
mode: "0755"
|
mode: "0755"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Setup config directory
|
- name: Setup config directory
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: "{{ config_dir }}"
|
path: "{{ config_dir }}"
|
||||||
|
@ -60,3 +59,9 @@
|
||||||
src: "{{ dotfiles_config_dir }}/starship.toml"
|
src: "{{ dotfiles_config_dir }}/starship.toml"
|
||||||
dest: "{{ config_dir }}/starship.toml"
|
dest: "{{ config_dir }}/starship.toml"
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
|
- name: Link ssh config
|
||||||
|
ansible.builtin.file:
|
||||||
|
src: "{{ host_home_dir }}/.ssh"
|
||||||
|
dest: "{{ home_dir }}/.ssh"
|
||||||
|
state: link
|
||||||
|
|
Loading…
Reference in a new issue