Sha256: fe27e25cb3bb438f44ad96cfce7660be34a9eda2006e8878a390dd88da44db0c

Contents?: true

Size: 307 Bytes

Versions: 9

Compression:

Stored size: 307 Bytes

Contents

#!/bin/bash

# Script to run Puppet. The default implementation here is simply to pass
# through the command line arguments (which are likely to be numerous when
# compiling a catalog).

if [ -z "$OCD_PUPPET_BINARY" ]; then
  echo "Error: PUPPET_BINARY must be set"
  exit 255
fi

"$OCD_PUPPET_BINARY" "$@"

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
octocatalog-diff-1.5.3 scripts/puppet/puppet.sh
octocatalog-diff-1.5.2 scripts/puppet/puppet.sh
octocatalog-diff-1.5.1 scripts/puppet/puppet.sh
octocatalog-diff-1.5.0 scripts/puppet/puppet.sh
octocatalog-diff-1.4.1 scripts/puppet/puppet.sh
octocatalog-diff-1.4.0 scripts/puppet/puppet.sh
octocatalog-diff-1.3.0 scripts/puppet/puppet.sh
octocatalog-diff-1.2.0 scripts/puppet/puppet.sh
octocatalog-diff-1.1.0 scripts/puppet/puppet.sh