Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
James T. Lee
Dotfiles
Compare Revisions
3c88b7c9d67f0ce3dbf1fe8f46dbacaaefcc0dea...c82fc8acf51b2f94bec1b35cea519a571c7089de
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
29 deletions
+2
-29
lib/puppet/stdlib/types/syslogfacility.pp
lib/puppet/stdlib/types/syslogfacility.pp
+0
-26
lib/puppet/stdlib/types/unixpath.pp
lib/puppet/stdlib/types/unixpath.pp
+1
-1
lib/puppet/stdlib/types/windowspath.pp
lib/puppet/stdlib/types/windowspath.pp
+1
-1
lib/puppet/stdlib/types/yes_no.pp
lib/puppet/stdlib/types/yes_no.pp
+0
-1
No files found.
lib/puppet/stdlib/types/syslogfacility.pp
deleted
100644 → 0
View file @
3c88b7c9
type
Stdlib
::
Syslogfacility
=
Enum
[
'kern'
,
'user'
,
'mail'
,
'daemon'
,
'auth'
,
'syslog'
,
'lpr'
,
'news'
,
'uucp'
,
'cron'
,
'authpriv'
,
'ftp'
,
'ntp'
,
'security'
,
'console'
,
'solaris-cron'
,
'local0'
,
'local1'
,
'local2'
,
'local3'
,
'local4'
,
'local5'
,
'local6'
,
'local7'
,
]
lib/puppet/stdlib/types/unixpath.pp
View file @
c82fc8ac
# this regex rejects any path component that does not start with "/" or is NUL
# this regex rejects any path component that does not start with "/" or is NUL
type
Stdlib
::
Unixpath
=
Pattern
[
/
\
A
\
/
([
^\
n
\
/
\
0
]
+
\
/*
)
*
\
z
/
]
type
Stdlib
::
Unixpath
=
Pattern
[
/
^
\
/
([
^\
/
\
0
]
+
\
/*
)
*
$
/
]
lib/puppet/stdlib/types/windowspath.pp
View file @
c82fc8ac
type
Stdlib
::
Windowspath
=
Pattern
[
/
\
A
(([
a
-
zA
-
Z
]:[
\\\
/
])|([
\\\
/
][
\\\
/
][
^\\\
/
]
+
[
\\\
/
][
^\\\
/
]
+
)|([
\\\
/
][
\\\
/
]
\?
[
\\\
/
][
^\\\
/
]
+
))
.*
\
z
/
]
type
Stdlib
::
Windowspath
=
Pattern
[
/
^
(([
a
-
zA
-
Z
]:[
\\\
/
])|([
\\\
/
][
\\\
/
][
^\\\
/
]
+
[
\\\
/
][
^\\\
/
]
+
)|([
\\\
/
][
\\\
/
]
\?
[
\\\
/
][
^\\\
/
]
+
))
/
]
lib/puppet/stdlib/types/yes_no.pp
deleted
100644 → 0
View file @
3c88b7c9
type
Stdlib
::
Yes_no
=
Pattern
[
/
\
A
(
?
i
:(
yes
|
no
))
\
z
/
]
Prev
1
…
26
27
28
29
30
Next