We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bbb29a4 + ec2c517 commit df3b527Copy full SHA for df3b527
README.md
@@ -301,6 +301,24 @@ Unacceptable input example:
301
../relative_path
302
```
303
304
+#### `Stdlib::Ensure::Service`
305
+
306
+Matches acceptable ensure values for service resources.
307
308
+Acceptable input examples:
309
310
+```shell
311
+stopped
312
+running
313
+```
314
315
+Unacceptable input example:
316
317
318
+true
319
+false
320
321
322
#### `Stdlib::Httpsurl`
323
324
Matches HTTPS URLs.
types/ensure/service.pp
@@ -0,0 +1 @@
1
+type Stdlib::Ensure::Service = Enum['stopped', 'running']
0 commit comments