Skip to content
Snippets Groups Projects
Commit 91dfec12 authored by Jörg Sachse's avatar Jörg Sachse
Browse files

feat: install Harlequin SQLite TUI

parent 8b17835f
No related branches found
No related tags found
No related merge requests found
Pipeline #9039 passed
...@@ -23,7 +23,8 @@ ...@@ -23,7 +23,8 @@
'tar', 'tar',
'unzip', 'unzip',
'imagemagick', 'imagemagick',
'libtiff-tools' 'libtiff-tools',
'python3-virtualenv',
] ]
state: present state: present
update_cache: true update_cache: true
...@@ -50,3 +51,17 @@ ...@@ -50,3 +51,17 @@
'perl-modules-5.36', 'perl-modules-5.36',
] ]
state: present state: present
- name: Install harlequin SQL TUI into virtualenv
ansible.builtin.pip:
chdir: "/opt/"
name: "harlequin"
virtualenv: "harlequin"
virtualenv_python: "python3"
- name: Leave info that Harlequin was installed legitimately.
ansible.builtin.lineinfile:
path: "/opt/harlequin_INFO.txt"
mode: "0o644"
create: true
line: "Huhu, Jörg hier. Harlequin darf hier sein (https://github.com/tconbeer/harlequin.)"
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
- name: install dependencies for Submission Application - name: install dependencies for Submission Application
ansible.builtin.import_tasks: "install_packages.yml" ansible.builtin.import_tasks: "install_packages.yml"
tags: [subapp] tags: [packages, subapp]
- name: set Kernel parameters - name: set Kernel parameters
ansible.builtin.import_tasks: "configure_kernel_parameters.yml" ansible.builtin.import_tasks: "configure_kernel_parameters.yml"
...@@ -77,9 +77,9 @@ ...@@ -77,9 +77,9 @@
ansible.builtin.import_tasks: "configure_iptables_externalusers.yml" ansible.builtin.import_tasks: "configure_iptables_externalusers.yml"
tags: [iptables] tags: [iptables]
#- name: install tools for Technical Analysts # - name: install tools for Technical Analysts
# ansible.builtin.import_tasks: "install_ta_tools.yml" # ansible.builtin.import_tasks: "install_ta_tools.yml"
# tags: [ta, apt] # tags: [ta, apt]
- name: install scripts and services for moving old logs to archive - name: install scripts and services for moving old logs to archive
ansible.builtin.import_tasks: "install_move_logs.yml" ansible.builtin.import_tasks: "install_move_logs.yml"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment