Puppet Module Repository Beta

Finally! Luke and I took out a minute and hashed up a scheme to get the ball rolling on a central one-stop-shop for puppet modules. Let me quote the pertinent part from Luke‘s mail:
DavidS wrote:
  • Create a new github account to collect all modules with a repo per module.
  • Add devs as available to the modules/repos as collaborators to allow them to push changes.
  • Use the issue tracker attached to each module for bug tracking.
  • Use a meta-repo to combine “matching” module versions into “releases”.
  • Encourage wide-spread collaboration.
I’m willing to do all the necessary legwork to set this up. Just say the word.
That’s basically the plan. If you make a ‘puppet-modules’ account and want to set it up… That would be awesome.
So there we go, I’ve created a puppet-modules account on github where useful and maintained repos can be published. To seed the effort I’ve already committed a few of my core modules and expect to add some more at a later time when the workflow is settled in. The primary entry point for local perusal is the puppet-manifests repository which contains all others as submodules. This is very convenient to clone all modules at once:
$ git clone git://github.com/puppet-modules/puppet-manifests.git
$ cd puppet-manifests/
$ git submodule init
$ git submodule update
Within modules/ you can now find git repositories for all published modules, ready to go. For working on the repos, I’ve created forks of all modules in my private github account to avoid cluttering the “published” versions. If you have any patches or modules to contribute or want to collaborate, please use github’s issue tracker of the concerned module or send a shout to puppet-users or me privately.

dasZ.at

dasZ.at - the people behind ZBox.
dasZ.at Logo

Downloads

The lateset download will be available here - soon

Lastet blog

In our blog we talk about the latest developments around our tool ZBox.
>> Blog

Latest blog entries
>> Reference project: Implementing WordPress-based Website

Based on the reference design provided by Sabine herself, we implemented the zartbitter Website. The site is powered by the PHP-based WordPress blog and CMS engine, some additional plugins and a bit of yarn to hold it all together.


>> Setting a permanent search_path, the Right Way

Others recommend setting the search_path in the postgresql.conf. Current versions of PostgreSQL can set the search_path permanently on a per-database basis without having to touch system configuration files


>> Porting Puppet to Windows

In the course of the PuppetCamp Europe, I met with many people I only knew from IRC and email and it was a great time with interesting and inspiring discussions.

Today I want to write about the work I’m currently commisioned for by puppetlabs, porting puppet to Microsoft Windows.


>> Puppetcamp Europe 2010

I’m going to Puppetcamp Europe 2010!


>> Using gendarme with Code Contracts from .NET 4.0

When using gendarme on post-processed assemblies with code contracts and /throwonfailure set, a few things have to be ignored. Put the following lines into your ignore file (for example gendarmeignore.txt) and use it with –ignore on the command line.


>> Microsoft cannot decode Base64: News at 11!

Arthur has found a really nasty bug in Microsoft’s streaming Base64 decoder as used in the WCF: Connect Bug#541494


>> Kolab Connector binaries uploaded

Arthur moved on with programming and testing. Now we uploaded the first packages, which now contain the basic calendar and contacts synchronisation. The plugins already are able to synchronize our personal data.


>> Kolab Sync for Android and Outlook: Developer Preview

We are proud to announce the first developer preview for Kolab sync clients for both Android and Outlook. Both are licensed under the GPLv3.


>> Visual Studio 2008 Debugger

I didn’t know that: the VS2008 debugger has many bugs. Specifically, if you have a solution with multiple websites, debugging doesn’t work!

Symptom: Upon reaching a breakpoint, StepOver/Into do not work, but resume execution. This makes the debugger pretty pointless.


>> Building a simple MSBuild Task

On the “Using Studio’s “Custom Tool” in MSBuild” question, I was prompted to share the code. Here is a stripped down skeleton where I removed the actual calls to the custom tool. Since it is open source I didn’t really need to access the Visual Studio’s registry keys.