Merge pull request #197 from vchepkov/snippet

set default snippet content to empty string
This commit is contained in:
Steffen Zieger 2016-08-02 12:14:06 +02:00 коммит произвёл GitHub
Родитель 895eaa406e f889a3ac09
Коммит 94d8a17de6
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -5,8 +5,8 @@
#
# === Parameters
#
# [*content*] - The actual content to place in the file.
# [*ensure*] - How to enforce the file (default: present)
# [*content*] - The actual content to place in the file. (default: empty sting)
# [*ensure*] - How to enforce the file (default: present)
# [*file_mode*] - The mode of the file snippet (default: $rsyslog::perm_file)
#
# === Variables
@ -18,7 +18,7 @@
# }
#
define rsyslog::snippet(
$content,
$content = '',
$ensure = 'present',
$file_mode = 'undef'
) {