From 0589fb8997f813a9b6808bab45949dfaf056a1ee Mon Sep 17 00:00:00 2001 From: Tobias Herre Date: Fri, 3 Nov 2023 12:54:54 +0100 Subject: [PATCH] intall_pkgs bundle added --- sympa.cf | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/sympa.cf b/sympa.cf index 24c94bb..15780d3 100644 --- a/sympa.cf +++ b/sympa.cf @@ -360,7 +360,9 @@ vars: methods: "any" usebundle => sympa_create_mailname(@(cfg)); - "any" usebundle => wmde_install_packages(@(sympa.pkgs),"sympa"); + #"any" usebundle => wmde_install_packages(@(sympa.pkgs),"sympa"); + "any" usebundle => install_sympa_pkgs; + "any" usebundle => sympa_update_config(@(cfg)); "any" usebundle => sympa_init_db(@(cfg)); @@ -379,7 +381,6 @@ methods: "any" usebundle => install_sympa_domains(@(cfg[domains]),"$(cfg_dir)"); reports: - "ETC: $(cfg_dir) - $(cfg[settings][etc])"; } @@ -596,3 +597,11 @@ reports: "SYMPA DOES NOT RUN BACKUP"; } + + +bundle agent install_sympa_pkgs +{ +methods: + "any" usebundle => wmde_install_packages(@(sympa.pkgs),"sympa"); + +}