Marcus Young

Software. Microcontrollers. Beer.

New Puppet Module - MirthConnect

| Comments

I released a new Puppet module to the forge out of another work necessity. Mirth is used pretty heavily for HL7 ETL, and has a ton of other uses.

I started out at my current gig doing this, so it hurt a little to have to automate it, mostly out of fear of getting back into that engine =).

It can be found on my github or at the Puppet forge.

Basic Usage:

1
2
3
4
5
6
7
8
9
10
yumrepo { "my mirth repo":
  baseurl  => "https://server/pulp/repos/mirthconnect/",
  descr    => "My Mirth Connect Repository",
  enabled  => 1,
  gpgcheck => 0,
}

class { 'mirthconnect':
  provider => 'yum', #default is 'rpm'
}

Comments