Mercurial > hg > test-repo
comparison ansible/roles/zsh/tasks/main.yml @ 26:19ef091c0ef3 default tip
add setup of shell env through ansible
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Tue, 15 Nov 2016 16:34:28 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
25:ec5b9cbb518c | 26:19ef091c0ef3 |
---|---|
1 --- | |
2 - name: Install zsh | |
3 package: name=zsh state=latest | |
4 become: yes | |
5 | |
6 - name: Install mercurial | |
7 package: name=mercurial state=latest | |
8 become: yes | |
9 | |
10 - name: Setup mercurial proxy | |
11 command: hg --config http_proxy.host=http://192.168.66.66:3128 | |
12 | |
13 - name: Check out zsh environment | |
14 hg: repo=https://xanthippe.duckdns.org/hg/zsh-env dest={{ansible_env.HOME}}/.zsh-env | |
15 | |
16 #- name: test | |
17 # debug: msg="Home is {{ ansible_env.HOME }}" | |
18 | |
19 #- name: Create Symlink | |
20 # file: path=${HOME}/.zsh-env state=link src=${HOME}/.zsh-env/zshrc | |
21 |