add duckdb remove pcloud or set the var to false#
This commit is contained in:
@@ -38,3 +38,5 @@
|
||||
when: install_pcloud
|
||||
- ansible.builtin.import_tasks: tasks/typora.yml
|
||||
when: install_typora
|
||||
- ansible.builtin.import_tasks: tasks/duckdb.yml
|
||||
when: install_duckdb
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
---
|
||||
- name: Download DuckDB CLI
|
||||
ansible.builtin.get_url:
|
||||
url: "https://install.duckdb.org/v{{ duckdb_version }}/duckdb_cli-linux-amd64.gz"
|
||||
dest: /tmp/duckdb_cli-linux-amd64.gz
|
||||
mode: "0644"
|
||||
timeout: 300
|
||||
|
||||
- name: Install DuckDB CLI
|
||||
ansible.builtin.shell: gzip -dc /tmp/duckdb_cli-linux-amd64.gz > /usr/local/bin/duckdb
|
||||
args:
|
||||
executable: /bin/bash
|
||||
creates: /usr/local/bin/duckdb
|
||||
|
||||
- name: Make DuckDB executable
|
||||
ansible.builtin.file:
|
||||
path: /usr/local/bin/duckdb
|
||||
mode: "0755"
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
- name: Remove DuckDB archive
|
||||
ansible.builtin.file:
|
||||
path: /tmp/duckdb_cli-linux-amd64.gz
|
||||
state: absent
|
||||
@@ -12,6 +12,8 @@ jdtls_force_update: false
|
||||
jdtls_download_timeout: 300
|
||||
jdtls_download_retries: 3
|
||||
jdtls_download_delay: 10
|
||||
install_duckdb: true
|
||||
duckdb_version: "1.5.2"
|
||||
|
||||
system_timezone: Atlantic/Faroe
|
||||
system_locale: en_US.UTF-8
|
||||
@@ -22,7 +24,7 @@ upgrade_system: true
|
||||
install_virtualization: true
|
||||
install_sqlcmd: true
|
||||
install_jdtls: true
|
||||
install_pcloud: true
|
||||
install_pcloud: false
|
||||
pcloud_appimage_url: "https://plon1.pcloud.com/cBZeyCak57Ztkt7yq7ZZZ8t965kZ2ZZec4ZkZ9KHBHZJgZCzZrLZeFZ94ZkLZ5LZWQZr4Z6YZrFZmLZyQZoTZtwII5ZsVYEJTHXlFSbr5cyP1riD5WTyYYV/pCloud.AppImage"
|
||||
install_typora: true
|
||||
typora_archive_url: https://downloads.typora.io/linux/Typora-linux-x64.tar.gz
|
||||
|
||||
Reference in New Issue
Block a user