Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
* [Products](#products)
* [Common](#common)


# Other useful pages
- [Aurora Development Page](/docs/development.md)
- [Molecule Docker Page](/docs/molecule_dockers.md)
Expand Down
2 changes: 1 addition & 1 deletion ansible/playbooks/install_software.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@
- {role: installation/mongodb, when: "'mongodb' in software_list"}
- {role: installation/warehouse_ros, when: "'warehouse_ros' in software_list"}
- {role: installation/production_tools, when: "'production_tools' in software_list"}
- {role: installation/teamviewer, when: "'teamviewer' in software_list"}
- {role: installation/shadow-support, when: "'shadow-support' in software_list"}
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# with this program. If not, see <http://www.gnu.org/licenses/>.

---
teamviewer_package_url: "https://download.teamviewer.com/download/linux/teamviewer_amd64.deb"
teamviewer_package_dest: "/tmp/teamviewer_amd64.deb"
shadow-support_package_url: "https://s3.eu-west-2.amazonaws.com/com.shadowrobot.eu-west-2.public/Shadow-Support-Binary/shadow-support-x86_64_external.deb"
shadow-support_package_dest: "/tmp/shadow-support.deb"
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,14 @@
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.

---
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we want to get rid of the Teamviewer task?
Maybe we can just keep it in the available roles, but not use it in our products. This would make it easier to use it if for some reason we have to use teamviewer in the future.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I cant see a circumstance where we would rerun all of aurora just to install teamviewer

Copy link
Contributor

Choose a reason for hiding this comment

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

teamviewer has also become completely useless... we get 5 minute connetions then get booted off for not paying

- name: Install libminizip1 package (Dependency for TeamViewer)
become: true
apt:
name: libminizip1
state: present

- name: Download TeamViewer package
- name: Download shadow-support package
get_url:
url: "{{ teamviewer_package_url }}"
dest: "{{ teamviewer_package_dest }}"
url: "{{ shadow-support_package_url }}"
dest: "{{ shadow-support_package_dest }}"

- name: Install TeamViewer package
- name: Install shadow-support package
become: true
apt:
deb: "{{ teamviewer_package_dest }}"
deb: "{{ shadow-support_package_dest }}"
state: present

Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
name: docker/aws
when: use_aws|bool

- name: Include installation/teamviewer role
- name: Include installation/shadowsupport role
include_role:
name: installation/teamviewer
name: installation/shadowsupport

- name: Include docker-deploy/desktop-icons role
include_role:
Expand Down
4 changes: 2 additions & 2 deletions ansible/roles/products/hand-e/server/deploy/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,6 @@
mode: '755'
when: upgrade_check|bool

- name: Include installation/teamviewer role
- name: Include installation/shadow-support role
include_role:
name: installation/teamviewer
name: installation/shadow-support
4 changes: 2 additions & 2 deletions ansible/roles/products/teleop/server/deploy/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,6 @@
mode: '755'
when: upgrade_check|bool

- name: Include installation/teamviewer role
- name: Include installation/shadow-support role
include_role:
name: installation/teamviewer
name: installation/shadow-support