From 7736c637c24a068f1465f08fd770f758eecaa4c4 Mon Sep 17 00:00:00 2001 From: p3ls Date: Wed, 25 Jan 2023 14:50:13 +0100 Subject: [PATCH] foo --- .DS_Store | Bin 0 -> 6148 bytes mgmt/playground.yml | 12 ++++++++++++ mgmt/test.yml | 3 +++ mgmt/user.yml | 15 +++++++++++++++ sh/commit.sh | 9 +++++++++ 5 files changed, 39 insertions(+) create mode 100644 .DS_Store create mode 100644 mgmt/playground.yml create mode 100644 mgmt/test.yml create mode 100644 mgmt/user.yml create mode 100755 sh/commit.sh diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..80af5465bd291418455fe11cf3cfd4b2995a51a7 GIT binary patch literal 6148 zcmeHKzmL-}6n^dnF1-_?Ly-^?QY0j%3L3;6152(~7Dj?V;)hCesoIDnu9}qUR8`6! z022!%x3D2GGqbWXFfhQv#D9Q}_iWR~ZDB+R{3QFc-{%)Ue`)L*09b1rx&So*u(1$Y zTUf0z;;F1yMS1FojGhtqUH^b5!BH0Eg^eYlUHe*ifo5bOEC=`vT&XMFQh z{d}bIQLzbM~@)7$V&YPeP3FN^f8>+Rw4Tf=)<;~^?R@tyloZPfG?QQ#^Kj0HT z@8;vI)g9fZ-fhm~;AguV+=+UVPOZMr)4Us{y^#or!X6HJa5qXrK56lB8fGHamxNul ztDV}p>C|<1cN)%)yE|(*Q};^qYQwqKbZ4`wedfaD>$f_O<0R!zQ4KUkijkd?Ft49s zYrdi|JBS0!kl49Xm)ANfb7gt=kH0*>_d?05Br40hj@RWaw0W0acLg#S=(#|O0m5I- zd{JQTNh#mk&NKOJwzmK9LH9D942FnyzdQQ*HUkn(IE$-r?8NS9yBIH5oIV-R}3b@(eJ2np29++3byL(ZWFqNlKsh#oZaM?lD6Dx<(3Rp1ADe#DFb literal 0 HcmV?d00001 diff --git a/mgmt/playground.yml b/mgmt/playground.yml new file mode 100644 index 0000000..049ac07 --- /dev/null +++ b/mgmt/playground.yml @@ -0,0 +1,12 @@ +- copy: + dest: /etc/cron.d/telekom-dns-lookup + content: | + + # telekom-dns-lookup tool täglich 4 uhr morgens + 0 4 * * * /usr/local/bin/telekom-dns-lookup > /dev/null + + # asterisk -'core restart' when server is not busy + 1 4 * * * /usr/sbin/asterisk -x "core restart when convenient" > /dev/null + + owner: root + group: crontab diff --git a/mgmt/test.yml b/mgmt/test.yml new file mode 100644 index 0000000..f9e5e1d --- /dev/null +++ b/mgmt/test.yml @@ -0,0 +1,3 @@ + +- update: + name: accs \ No newline at end of file diff --git a/mgmt/user.yml b/mgmt/user.yml new file mode 100644 index 0000000..be768de --- /dev/null +++ b/mgmt/user.yml @@ -0,0 +1,15 @@ +# - group: +# name: voip +# system: true + +- user: + name: asterisk + system: true + groups: voip + append: true + +# - user: +# name: dnsmasq +# system: true +# groups: voip +# append: true diff --git a/sh/commit.sh b/sh/commit.sh new file mode 100755 index 0000000..d81ccc6 --- /dev/null +++ b/sh/commit.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh + +echo foo >> msg.txt + +git add msg.txt + +git commit -m test + +mgmt --debug run mgmt/release.yml \ No newline at end of file