summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-06-23 18:32:18 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-06-23 18:32:18 +0200
commit78ff15abbe338f36f1f469f10d9fcadb96cc29b5 (patch)
treeb76e0d21ecf854d2e6fdb4cc5cc5d4af890b174e
parentFix types. (diff)
downloadnspawn-78ff15abbe338f36f1f469f10d9fcadb96cc29b5.tar.gz
nspawn-78ff15abbe338f36f1f469f10d9fcadb96cc29b5.tar.xz
Fix types.
-rw-r--r--types/systemd/resourcelimit.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/types/systemd/resourcelimit.pp b/types/systemd/resourcelimit.pp
index 730a92a..2d31199 100644
--- a/types/systemd/resourcelimit.pp
+++ b/types/systemd/resourcelimit.pp
@@ -1,7 +1,7 @@
type Nspawn::Systemd::Resourcelimit = Variant[
- Variant[Integer, enum['infinity']],
+ Variant[Integer, Enum['infinity']],
Tuple[
- Variant[Integer, enum['infinity']],
- Variant[Integer, enum['infinity']],
+ Variant[Integer, Enum['infinity']],
+ Variant[Integer, Enum['infinity']],
]
]