Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update D-Rat install #193

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 4 additions & 44 deletions tasks/install_d-rats_maurizioandreotti.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,49 +62,9 @@
name: "{{ item }}"
state: present
with_items:
- python
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I so want to get rid of all this dependency "soup"...

- python-lxml
- python-libxml2
when: is_ubuntu|bool
retries: 5
delay: 30
register: result
until: result.failed == false

- name: Install dependent Python component python-gtk for D-Rats (Xubuntu)
become: yes
apt:
deb: http://archive.ubuntu.com/ubuntu/pool/universe/p/pygtk/python-gtk2_2.24.0-5.1ubuntu2_amd64.deb
when: is_ubuntu|bool
retries: 5
delay: 30
register: result
until: result.failed == false

- name: Install dependent Python component python-serial for D-Rats (Xubuntu)
become: yes
apt:
deb: http://mirrors.kernel.org/ubuntu/pool/main/p/pyserial/python-serial_3.4-2_all.deb
when: is_ubuntu|bool
retries: 5
delay: 30
register: result
until: result.failed == false

- name: Install dependent Python component python-glade2 for D-Rats (Xubuntu)
become: yes
apt:
deb: http://archive.ubuntu.com/ubuntu/pool/universe/p/pygtk/python-glade2_2.24.0-5.1ubuntu2_amd64.deb
when: is_ubuntu|bool
retries: 5
delay: 30
register: result
until: result.failed == false

- name: Install dependent Python component python-libxslt1 for D-Rats (Xubuntu)
become: yes
apt:
deb: http://security.ubuntu.com/ubuntu/pool/main/libx/libxslt/python-libxslt1_1.1.29-5ubuntu0.2_amd64.deb
- python2-dev
- libxml2-dev
- libxslt1-dev
when: is_ubuntu|bool
retries: 5
delay: 30
Expand All @@ -113,7 +73,7 @@

- name: Download D-Rats sources
git:
repo: https://github.com/maurizioandreotti/D-Rats.git
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please see my earlier comment about changing out the repo.

repo: https://github.com/ham-radio-software/D-Rats.git
dest: /home/{{ ham_user }}/hamradio/D-Rats
retries: 5
delay: 30
Expand Down