diff --git a/types/ensure/file.pp b/types/ensure/file.pp new file mode 100644 index 0000000..540fe54 --- /dev/null +++ b/types/ensure/file.pp @@ -0,0 +1 @@ +type Stdlib::Ensure::File = Enum['present', 'file', 'directory', 'link', 'absent'] diff --git a/types/ensure/file/directory.pp b/types/ensure/file/directory.pp new file mode 100644 index 0000000..5765051 --- /dev/null +++ b/types/ensure/file/directory.pp @@ -0,0 +1 @@ +type Stdlib::Ensure::File::Directory = Enum['directory', 'absent'] diff --git a/types/ensure/file/file.pp b/types/ensure/file/file.pp new file mode 100644 index 0000000..22cd639 --- /dev/null +++ b/types/ensure/file/file.pp @@ -0,0 +1 @@ +type Stdlib::Ensure::File::File = Enum['file', 'absent'] diff --git a/types/ensure/file/link.pp b/types/ensure/file/link.pp new file mode 100644 index 0000000..20620b8 --- /dev/null +++ b/types/ensure/file/link.pp @@ -0,0 +1 @@ +type Stdlib::Ensure::File::Link = Enum['link', 'absent']