aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/snmp.pp
diff options
context:
space:
mode:
authorCarlos Camacho <ccamacho@redhat.com>2016-08-11 15:04:23 +0200
committerCarlos Camacho <ccamacho@redhat.com>2016-08-11 19:11:51 +0000
commitea752f3527746e6b7af2c79071a46ade8bceef61 (patch)
tree8ce549d554e2485bffb0ce506afd52e7083002c7 /manifests/profile/base/snmp.pp
parentb2c80337669164699b58e37e4813a9d9b7dc60a5 (diff)
Removing WARNING: line has more than 140 characters in puppet-tripleo profiles
Some lint checks are returning: WARNING: line has more than 140 characters in puppet-tripleo profiles This patch will remove those warnings by adding \'s Change-Id: I19b56c93db82948fb0498a4c9851b522c81946f8
Diffstat (limited to 'manifests/profile/base/snmp.pp')
-rw-r--r--manifests/profile/base/snmp.pp11
1 files changed, 10 insertions, 1 deletions
diff --git a/manifests/profile/base/snmp.pp b/manifests/profile/base/snmp.pp
index 2ed6752..301ac9a 100644
--- a/manifests/profile/base/snmp.pp
+++ b/manifests/profile/base/snmp.pp
@@ -43,7 +43,16 @@ class tripleo::profile::base::snmp (
}
class { '::snmp':
agentaddress => ['udp:161','udp6:[::1]:161'],
- snmpd_config => [ join(['createUser ', $snmpd_user, ' MD5 "', $snmpd_password, '"']), join(['rouser ', $snmpd_user]), 'proc cron', 'includeAllDisks 10%', 'master agentx', 'trapsink localhost public', 'iquerySecName internalUser', 'rouser internalUser', 'defaultMonitors yes', 'linkUpDownNotifications yes' ],
+ snmpd_config => [ join(['createUser ', $snmpd_user, ' MD5 "', $snmpd_password, '"']),
+ join(['rouser ', $snmpd_user]),
+ 'proc cron',
+ 'includeAllDisks 10%',
+ 'master agentx',
+ 'trapsink localhost public',
+ 'iquerySecName internalUser',
+ 'rouser internalUser',
+ 'defaultMonitors yes',
+ 'linkUpDownNotifications yes' ],
}
}
}