Initial commit

This commit is contained in:
Tobias Herre 2023-10-09 12:16:05 +02:00
parent c826f0a139
commit 4da4e6e5e4
1 changed files with 20 additions and 0 deletions

20
git.cf Normal file
View File

@ -0,0 +1,20 @@
#
#
#
bundle agent git
{
vars:
freebsd::
"pkgs" slist => { "git" };
"exe" string => "/usr/local/bin/git";
debian::
"pkgs" slist => { "git" };
"exe" string => "/usr/bin/git";
}
bundle agent install_git
{
methods:
"any" usebundle => wmde_install_packages(@(git.pkgs),"git");
}