Remove trailing whitespaces in regular file

Change-Id: I06d4ed2a8153820f7253c6602bfa8c05af59e06f
This commit is contained in:
Hengqing Hu 2012-03-09 15:59:44 +08:00
parent 8a91936e0a
commit fa51e50883
1 changed files with 3 additions and 3 deletions

View File

@ -15,11 +15,11 @@ class iptables($rules='', $public_tcp_ports=[], $public_udp_ports=[]) {
# iptables is part of the kernel.)
hasstatus => true,
status => "true",
# Under Debian, the "restart" parameter does not reload the rules, so tell
# Puppet to fall back to stop/start, which does work.
hasrestart => false,
}
file { "/etc/iptables":
@ -33,7 +33,7 @@ class iptables($rules='', $public_tcp_ports=[], $public_udp_ports=[]) {
mode => 640,
content => template('iptables/rules.erb'),
require => [Package["iptables-persistent"], File["/etc/iptables"]],
# When this file is updated, make sure the rules get reloaded.
notify => Service["iptables-persistent"],
;