Whitespace only removal of tabs and trailing spaces
Watch out for tab characters. =)
This commit is contained in:
parent
3e380e242b
commit
694ad98986
1 changed files with 8 additions and 6 deletions
|
@ -3,7 +3,7 @@
|
|||
# This module manages NGINX.
|
||||
#
|
||||
# Parameters:
|
||||
#
|
||||
#
|
||||
# There are no default parameters for this class. All module parameters are managed
|
||||
# via the nginx::params class
|
||||
#
|
||||
|
@ -24,11 +24,13 @@
|
|||
# include nginx
|
||||
# }
|
||||
class nginx {
|
||||
include nginx::package
|
||||
include nginx::config
|
||||
include nginx::service
|
||||
|
||||
Class['nginx::package'] -> Class['nginx::config'] ~> Class['nginx::service']
|
||||
|
||||
include nginx::package
|
||||
include nginx::config
|
||||
include nginx::service
|
||||
|
||||
Class['nginx::package'] -> Class['nginx::config'] ~> Class['nginx::service']
|
||||
|
||||
# Allow the end user to establish relationships to the "main" class
|
||||
# and preserve the relationship to the implementation classes through
|
||||
# a transitive relationship to the composite class.
|
||||
|
|
Loading…
Reference in a new issue