Whitespace only removal of tabs and trailing spaces

Watch out for tab characters.  =)
This commit is contained in:
Jeff McCune 2011-06-14 20:02:55 -07:00
parent 3e380e242b
commit 694ad98986

View file

@ -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.