Skip to content

Commit

Permalink
Consistency changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Mar 29, 2019
1 parent dcb1b5a commit ffa952b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## pycharm

[![Build Status](https://travis-ci.org/Oefenweb/ansible-pycharm.svg?branch=master)](https://travis-ci.org/Oefenweb/ansible-pycharm) [![Ansible Galaxy](http://img.shields.io/badge/ansible--galaxy-pycharm-blue.svg)](https://galaxy.ansible.com/Oefenweb/pycharm)
[![Build Status](https://travis-ci.org/Oefenweb/ansible-pycharm.svg?branch=master)](https://travis-ci.org/Oefenweb/ansible-pycharm)
[![Ansible Galaxy](http://img.shields.io/badge/ansible--galaxy-pycharm-blue.svg)](https://galaxy.ansible.com/Oefenweb/pycharm)

Set up [PyCharm](https://www.jetbrains.com/pycharm/).

Expand All @@ -13,7 +14,7 @@ None
* `pycharm_version` [default: `2018.3.5`]: Version to install
* `pycharm_edition` [default: `professional`]: Edition to install (e.g. `community`)
* `pycharm_install_prefix` [default: `/opt`]: Install prefix
* `pycharm_download_mirror` [default: `http://download.jetbrains.com/python`]: Download URL
* `pycharm_download_url` [default: `http://download.jetbrains.com/python`]: Download url

## Dependencies

Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
pycharm_version: 2018.3.5
pycharm_edition: professional
pycharm_install_prefix: /opt
pycharm_download_mirror: 'http://download.jetbrains.com/python'
pycharm_download_url: 'http://download.jetbrains.com/python'
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

- name: download
get_url:
url: "{{ pycharm_download_mirror }}/pycharm-{{ pycharm_edition }}-{{ pycharm_version }}.tar.gz"
url: "{{ pycharm_download_url }}/pycharm-{{ pycharm_edition }}-{{ pycharm_version }}.tar.gz"
dest: "{{ pycharm_downloads_path }}/pycharm-{{ pycharm_edition }}-{{ pycharm_version }}.tar.gz"
owner: root
group: root
Expand Down

0 comments on commit ffa952b

Please sign in to comment.