From 0743936434018e4e74d41f1c000af4412cb2e1c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrej=20Rama=C5=A1euski?= <andrej@x2.cz> Date: Mon, 6 Feb 2023 00:36:10 +0100 Subject: [PATCH] Sync script take pouziva docker secrets --- VERSION | 2 +- script/sync_octopus_groups | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index ac454c6..34a8361 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.12.0 +0.12.1 diff --git a/script/sync_octopus_groups b/script/sync_octopus_groups index 3a309ed..20af873 100755 --- a/script/sync_octopus_groups +++ b/script/sync_octopus_groups @@ -6,10 +6,17 @@ use warnings; use Mojo::File qw(curfile); use lib curfile->dirname->sibling('lib')->to_string; +use File::Find; +use Path::Tiny qw( path ); use Mojo::Pg; use SeMeet::Schema; use SeMeet::Model::IAPI; +use constant SECRETS => '/run/secrets'; + +# env z docker secrets +find(sub { $ENV{$_} = path(SECRETS . "/$_")->slurp_utf8 }, SECRETS); + my $iapi = SeMeet::Model::IAPI->new( $ENV{CFG_IAPI} ); my $schema = SeMeet::Schema->connect({ dsn => $ENV{CFG_DB_DSN}, -- GitLab