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.
11 lines
325 B
11 lines
325 B
10 years ago
|
- hosts: all
|
||
|
tasks:
|
||
|
- name: symlink dotfiles
|
||
|
file: src={{ ansible_env.HOME }}/Dropbox/dotfiles dest={{ ansible_env.HOME}}/.dotfiles state=link
|
||
|
- include: config.yml
|
||
|
- hosts: all
|
||
|
tasks:
|
||
|
- name: setup ssh keys
|
||
|
local_action: command ruby ~/.dotfiles/scripts/setup_ssh_keys.rb
|
||
|
when: ansible_domain == "local"
|