remove unnecessary requires, files autorequire resources up in their fs-tree
This commit is contained in:
parent
ea9f763d86
commit
64f7942aab
4 changed files with 0 additions and 4 deletions
|
@ -11,7 +11,6 @@ define tinc::vpn::base (
|
|||
|
||||
file{"/etc/tinc/${name}/hosts":
|
||||
ensure => directory,
|
||||
require => Package['tinc'],
|
||||
notify => Service['tinc'],
|
||||
owner => root, group => 0, mode => 0644;
|
||||
}
|
||||
|
|
|
@ -7,7 +7,6 @@ define tinc::vpn::conf (
|
|||
file { "/etc/tinc/${name}/tinc.conf":
|
||||
ensure => $ensure,
|
||||
content => template('tinc/tinc.conf.erb'),
|
||||
require => File["/etc/tinc"],
|
||||
notify => Service[tinc],
|
||||
owner => root, group => 0, mode => 0600;
|
||||
}
|
||||
|
|
|
@ -8,7 +8,6 @@ define tinc::vpn::hosts (
|
|||
ensure => $ensure,
|
||||
source => [ "puppet:///modules/site-tinc/keys/hosts/${hostname}",
|
||||
]
|
||||
require => File["/etc/tinc","/etc/tinc/hosts"],
|
||||
notify => Service[tinc],
|
||||
owner => root, group => 0, mode => 0600;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ define tinc::vpn::tinc-up(
|
|||
file { "/etc/tinc/${name}/tinc-up":
|
||||
ensure => $ensure,
|
||||
content => template('tinc/tinc-up.erb'),
|
||||
require => File["/etc/tinc"],
|
||||
notify => Service[tinc],
|
||||
owner => root, group => 0, mode => 0600;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue