diff options
author | Nicolas Vigier <boklm@mageia.org> | 2013-04-14 13:46:12 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2013-04-14 13:46:12 +0000 |
commit | 1be510f9529cb082f802408b472a77d074b394c0 (patch) | |
tree | b175f9d5fcb107576dabc768e7bd04d4a3e491a0 /zarb-ml/mageia-sysadm/attachments/20110315 | |
parent | fa5098cf210b23ab4f419913e28af7b1b07dafb2 (diff) | |
download | archives-master.tar archives-master.tar.gz archives-master.tar.bz2 archives-master.tar.xz archives-master.zip |
Diffstat (limited to 'zarb-ml/mageia-sysadm/attachments/20110315')
6 files changed, 292 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/attachments/20110315/01cbb13b/attachment-0001.asc b/zarb-ml/mageia-sysadm/attachments/20110315/01cbb13b/attachment-0001.asc new file mode 100644 index 000000000..7d2ebd08e --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20110315/01cbb13b/attachment-0001.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAk1/W7wACgkQk29cDOWzfVCHnQCgz5as+QQaexmUvKYRLJ3wVYGU +PzQAoPtUPTaQSsWvdHSxp7wGvI4ZYChX +=chMH +-----END PGP SIGNATURE----- diff --git a/zarb-ml/mageia-sysadm/attachments/20110315/01cbb13b/attachment.asc b/zarb-ml/mageia-sysadm/attachments/20110315/01cbb13b/attachment.asc new file mode 100644 index 000000000..7d2ebd08e --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20110315/01cbb13b/attachment.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEARECAAYFAk1/W7wACgkQk29cDOWzfVCHnQCgz5as+QQaexmUvKYRLJ3wVYGU +PzQAoPtUPTaQSsWvdHSxp7wGvI4ZYChX +=chMH +-----END PGP SIGNATURE----- diff --git a/zarb-ml/mageia-sysadm/attachments/20110315/c425236a/attachment-0001.bin b/zarb-ml/mageia-sysadm/attachments/20110315/c425236a/attachment-0001.bin new file mode 100644 index 000000000..ada7ca82a --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20110315/c425236a/attachment-0001.bin @@ -0,0 +1,137 @@ +Index: modules/youri-check/manifests/init.pp +=================================================================== +--- modules/youri-check/manifests/init.pp (revision 0) ++++ modules/youri-check/manifests/init.pp (revision 0) +@@ -0,0 +1,30 @@ ++class youri_check { ++ ++ $user = 'youri' ++ $home = '/var/tmp/youri' ++ $outdir = "$home/www" ++ $config = "$home/check.conf" ++ ++ user { $user: ++ comment => "Youri Check", ++ ensure => present, ++ managehome => true, ++ home => $home, ++ } ++ ++ package { ['perl-Youri-Media', 'youri-check', 'perl-DBD-SQLite'] : ++ ensure => installed ++ } ++ ++ cron { 'check': ++ command => "youri-check -c $config test && youri-check -c $config report", ++ hour => 4, ++ } ++ ++ file { "$config": ++ ensure => present, ++ owner => $user, ++ mode => 640, ++ content => template("youri_check/check.conf"), ++ } ++} +Index: modules/youri-check/templates/check.conf +=================================================================== +--- modules/youri-check/templates/check.conf (revision 0) ++++ modules/youri-check/templates/check.conf (revision 0) +@@ -0,0 +1,85 @@ ++# vim:ft=yaml:et:sw=4 ++ ++# helper variables ++mirror: /distrib/mageia/distrib/cauldron ++mirror_i586: ${mirror}/i586/media ++mirror_x86_64: ${mirror}/x86_64/media ++ ++# resultset definition ++resultset: ++ class: Youri::Check::Resultset::DBI ++ options: ++ driver: SQLite ++ host: localhost ++ base: youri.db ++ ++# checks definitions ++tests: ++ dependencies: ++ class: Youri::Check::Test::Dependencies ++ ++ missing: ++ class: Youri::Check::Test::Missing ++ ++# reports definitions ++reports: ++ file: ++ class: Youri::Check::Report::File ++ options: ++ to: <%= outdir %> ++ global: 1 ++ individual: 1 ++ formats: ++ html: ++ class: Youri::Check::Report::Format::HTML ++ text: ++ class: Youri::Check::Report::Format::Text ++ rss: ++ class: Youri::Check::Report::Format::RSS ++ ++# media definitions ++medias: ++ core.i586: ++ class: Youri::Media::URPM ++ options: ++ name: core ++ type: binary ++ path: ${mirror_i586}/core ++ hdlist: ${mirror_i586}/media_info/hdlist_core.cz ++ options: ++ dependencies: ++ allowed: ++ - core.i586 ++ missing: ++ allowed: ++ - core.sources ++ ++ core.x86_64: ++ class: Youri::Media::URPM ++ options: ++ name: core ++ type: binary ++ path: ${mirror_x86_64}/core ++ hdlist: ${mirror_x86_64}/media_info/hdlist_core.cz ++ options: ++ dependencies: ++ allowed: ++ - core.x86_64 ++ - core.i586 ++ missing: ++ allowed: ++ - core.sources ++ ++ ++ core.sources: ++ class: Youri::Media::URPM ++ options: ++ name: core ++ type: source ++ path: ${mirror_i586}/core ++ hdlist: ${mirror_i586}/media_info/hdlist_core.src.cz ++ options: ++ dependencies: ++ allowed: ++ - core.i586 ++ +Index: manifests/nodes.pp +=================================================================== +--- manifests/nodes.pp (revision 1321) ++++ manifests/nodes.pp (working copy) +@@ -193,6 +193,7 @@ + include openssh::ssh_keys_from_ldap + include mirror::mirrormageia + include releasekey::base ++ include youri-check + + # for testing iso quickly + include libvirtd::kvm
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20110315/c425236a/attachment.bin b/zarb-ml/mageia-sysadm/attachments/20110315/c425236a/attachment.bin new file mode 100644 index 000000000..ada7ca82a --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20110315/c425236a/attachment.bin @@ -0,0 +1,137 @@ +Index: modules/youri-check/manifests/init.pp +=================================================================== +--- modules/youri-check/manifests/init.pp (revision 0) ++++ modules/youri-check/manifests/init.pp (revision 0) +@@ -0,0 +1,30 @@ ++class youri_check { ++ ++ $user = 'youri' ++ $home = '/var/tmp/youri' ++ $outdir = "$home/www" ++ $config = "$home/check.conf" ++ ++ user { $user: ++ comment => "Youri Check", ++ ensure => present, ++ managehome => true, ++ home => $home, ++ } ++ ++ package { ['perl-Youri-Media', 'youri-check', 'perl-DBD-SQLite'] : ++ ensure => installed ++ } ++ ++ cron { 'check': ++ command => "youri-check -c $config test && youri-check -c $config report", ++ hour => 4, ++ } ++ ++ file { "$config": ++ ensure => present, ++ owner => $user, ++ mode => 640, ++ content => template("youri_check/check.conf"), ++ } ++} +Index: modules/youri-check/templates/check.conf +=================================================================== +--- modules/youri-check/templates/check.conf (revision 0) ++++ modules/youri-check/templates/check.conf (revision 0) +@@ -0,0 +1,85 @@ ++# vim:ft=yaml:et:sw=4 ++ ++# helper variables ++mirror: /distrib/mageia/distrib/cauldron ++mirror_i586: ${mirror}/i586/media ++mirror_x86_64: ${mirror}/x86_64/media ++ ++# resultset definition ++resultset: ++ class: Youri::Check::Resultset::DBI ++ options: ++ driver: SQLite ++ host: localhost ++ base: youri.db ++ ++# checks definitions ++tests: ++ dependencies: ++ class: Youri::Check::Test::Dependencies ++ ++ missing: ++ class: Youri::Check::Test::Missing ++ ++# reports definitions ++reports: ++ file: ++ class: Youri::Check::Report::File ++ options: ++ to: <%= outdir %> ++ global: 1 ++ individual: 1 ++ formats: ++ html: ++ class: Youri::Check::Report::Format::HTML ++ text: ++ class: Youri::Check::Report::Format::Text ++ rss: ++ class: Youri::Check::Report::Format::RSS ++ ++# media definitions ++medias: ++ core.i586: ++ class: Youri::Media::URPM ++ options: ++ name: core ++ type: binary ++ path: ${mirror_i586}/core ++ hdlist: ${mirror_i586}/media_info/hdlist_core.cz ++ options: ++ dependencies: ++ allowed: ++ - core.i586 ++ missing: ++ allowed: ++ - core.sources ++ ++ core.x86_64: ++ class: Youri::Media::URPM ++ options: ++ name: core ++ type: binary ++ path: ${mirror_x86_64}/core ++ hdlist: ${mirror_x86_64}/media_info/hdlist_core.cz ++ options: ++ dependencies: ++ allowed: ++ - core.x86_64 ++ - core.i586 ++ missing: ++ allowed: ++ - core.sources ++ ++ ++ core.sources: ++ class: Youri::Media::URPM ++ options: ++ name: core ++ type: source ++ path: ${mirror_i586}/core ++ hdlist: ${mirror_i586}/media_info/hdlist_core.src.cz ++ options: ++ dependencies: ++ allowed: ++ - core.i586 ++ +Index: manifests/nodes.pp +=================================================================== +--- manifests/nodes.pp (revision 1321) ++++ manifests/nodes.pp (working copy) +@@ -193,6 +193,7 @@ + include openssh::ssh_keys_from_ldap + include mirror::mirrormageia + include releasekey::base ++ include youri-check + + # for testing iso quickly + include libvirtd::kvm
\ No newline at end of file diff --git a/zarb-ml/mageia-sysadm/attachments/20110315/f933459b/attachment-0001.html b/zarb-ml/mageia-sysadm/attachments/20110315/f933459b/attachment-0001.html new file mode 100644 index 000000000..27bbee7c9 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20110315/f933459b/attachment-0001.html @@ -0,0 +1,2 @@ +Hi folks,<div><br></div><div>This mirror isn't up to date:�<span class="Apple-style-span" style="font-weight: bold; font-family: 'Times New Roman'; font-size: medium; "><a href="http://distro.ibiblio.org/pub/linux/distributions/mageia/iso/cauldron/">http://distro.ibiblio.org/pub/linux/distributions/mageia/iso/cauldron/</a></span></div> +<div><br></div><div><br></div><div>J�nior</div> diff --git a/zarb-ml/mageia-sysadm/attachments/20110315/f933459b/attachment.html b/zarb-ml/mageia-sysadm/attachments/20110315/f933459b/attachment.html new file mode 100644 index 000000000..27bbee7c9 --- /dev/null +++ b/zarb-ml/mageia-sysadm/attachments/20110315/f933459b/attachment.html @@ -0,0 +1,2 @@ +Hi folks,<div><br></div><div>This mirror isn't up to date:�<span class="Apple-style-span" style="font-weight: bold; font-family: 'Times New Roman'; font-size: medium; "><a href="http://distro.ibiblio.org/pub/linux/distributions/mageia/iso/cauldron/">http://distro.ibiblio.org/pub/linux/distributions/mageia/iso/cauldron/</a></span></div> +<div><br></div><div><br></div><div>J�nior</div> |