Skip to content

Instantly share code, notes, and snippets.

@dblessing
Created March 7, 2014 14:21
Show Gist options
  • Save dblessing/9412313 to your computer and use it in GitHub Desktop.
Save dblessing/9412313 to your computer and use it in GitHub Desktop.
Etcd provider
Puppet::Type.type(:etcd_key).provide(:etcd) do
confine feature: :etcd
def exists?
debug('returning false')
false
end
def create
fail 'create'
end
def destroy
fail 'destroy'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment