aboutsummaryrefslogtreecommitdiff
path: root/manifests/fly.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-06-15 19:03:23 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-06-15 19:03:23 +0200
commit73b98210f69455b33116f8c2ca3aab6daf473bab (patch)
tree1c059346ab41ac895ddbf1e7b4cc10918b6cdb18 /manifests/fly.pp
parentInitial commit. (diff)
downloadconcourse-73b98210f69455b33116f8c2ca3aab6daf473bab.tar.gz
concourse-73b98210f69455b33116f8c2ca3aab6daf473bab.tar.xz
Initial add.
Diffstat (limited to 'manifests/fly.pp')
-rw-r--r--manifests/fly.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/fly.pp b/manifests/fly.pp
new file mode 100644
index 0000000..b9e1e71
--- /dev/null
+++ b/manifests/fly.pp
@@ -0,0 +1,12 @@
+# @summary Manage a concourse client node
+#
+# Fly is the name of the concourse client command line.
+#
+# @param ensure
+class concourse::fly (
+ Enum['absent', 'present'] $ensure = 'present',
+) {
+ ensure_packages(['concourse-fly-cli'], {
+ 'ensure' => $ensure,
+ })
+}