feat: bump Pi-Hole and Bitcoin version

This commit is contained in:
Ben Grande 2024-04-12 18:13:55 +02:00
parent 084d08f7c5
commit a8e918829d
No known key found for this signature in database
GPG Key ID: 00C64E14F51F9E56
4 changed files with 15 additions and 4 deletions

View File

@ -6,7 +6,9 @@ SPDX-License-Identifier: AGPL-3.0-or-later
{% if grains['nodename'] != 'dom0' -%}
{% set bitcoin_tag = 'v26.0' -%}
{%- import slsdotpath ~ "/version.jinja" as version -%}
{% set bitcoin_tag = 'v' ~ version.version -%}
include:
- .configure-builder-common

View File

@ -6,9 +6,11 @@ SPDX-License-Identifier: AGPL-3.0-or-later
{% if grains['nodename'] != 'dom0' -%}
{%- import slsdotpath ~ "/version.jinja" as version -%}
## https://bitcoincore.org/bin/bitcoin-core-VERSION/
## bitcoin-26.0-x86_64-linux-gnu.tar.gz|SHA256SUMS|SHA256SUMS.asc
{% set bitcoin_version = '26.0' -%}
## bitcoin-VERSION-x86_64-linux-gnu.tar.gz|SHA256SUMS|SHA256SUMS.asc
{% set bitcoin_version = version.version -%}
{% set bitcoin_url_dir = 'https://bitcoincore.org/bin/bitcoin-core-' ~ bitcoin_version ~ '/' -%}
{% set bitcoin_archive_dir = 'bitcoin-' ~ bitcoin_version -%}
{% set bitcoin_file_archive = bitcoin_archive_dir ~ '-x86_64-linux-gnu.tar.gz' -%}

View File

@ -0,0 +1,7 @@
{#
SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{% set version = '26.1' -%}

View File

@ -7,7 +7,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
{% if grains['nodename'] != 'dom0' %}
{% set pihole_tag = 'v5.17.2' -%}
{% set pihole_tag = 'v5.18.2' -%}
include:
- utils.tools.common.update