intall_pkgs bundle added

This commit is contained in:
Tobias Herre 2023-11-03 12:54:54 +01:00
parent e2517d06f6
commit 0589fb8997
1 changed files with 11 additions and 2 deletions

View File

@ -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");
}