Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,24 @@ Unacceptable input example:
../relative_path
```

#### `Stdlib::Ensure::Service`

Matches acceptable ensure values for service resources.

Acceptable input examples:

```shell
stopped
running
```

Unacceptable input example:

```shell
true
false
```

#### `Stdlib::Httpsurl`

Matches HTTPS URLs.
Expand Down
1 change: 1 addition & 0 deletions types/ensure/service.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
type Stdlib::Ensure::Service = Enum['stopped', 'running']