Skip to content

Commit

Permalink
Aesthetics & fix Ansibles version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pjan committed Mar 11, 2014
1 parent 5df190c commit 3919d9e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-apt python-pycurl
install:
- pip install ansible
- pip install ansible==1.5.0
script:
- echo localhost > inventory
- ansible-playbook --syntax-check -i inventory test.yml
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ Licensed under the MIT License. See the LICENSE file for details.

#### Feedback, bug-reports, requests, ...

Are [welcome](https://github.com/ansibles/xxx/issues)!
Are [welcome](https://github.com/ansibles/vim/issues)!
8 changes: 6 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# file: vim/tasks/main.yml

- name: Vim | Make sure vim-tiny is uninstalled
apt: pkg=vim-tiny state=absent
apt:
pkg: vim-tiny
state: absent

- name: Vim | Make sure vim-nox is installed
apt: pkg=vim-nox state=present
apt:
pkg: vim-nox
state: present

0 comments on commit 3919d9e

Please sign in to comment.