summaryrefslogtreecommitdiff
path: root/manifests/package.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-08-04 23:18:09 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-08-04 23:40:55 +0200
commitf5785c5293531e837bb0eb219a1c336285d5e5e4 (patch)
tree3110af4768ddaf42233db469f095ffc26486a271 /manifests/package.pp
downloaduwsgi-f5785c5293531e837bb0eb219a1c336285d5e5e4.tar.gz
uwsgi-f5785c5293531e837bb0eb219a1c336285d5e5e4.tar.xz
Add newly created uwsgi package.
Diffstat (limited to '')
-rw-r--r--manifests/package.pp7
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/package.pp b/manifests/package.pp
new file mode 100644
index 0000000..2c3fd84
--- /dev/null
+++ b/manifests/package.pp
@@ -0,0 +1,7 @@
+class uwsgi::package (
+ Boolean $manage_package = true,
+) {
+ if ($manage_package) {
+ ensure_packages(['uwsgi'])
+ }
+}