natemccurdy
08/25/2022, 5:06 PMType[title] {
timeout => 900,
}
natemccurdy
08/25/2022, 5:06 PMcdenneen
08/25/2022, 5:06 PMnodejs::npm { 'pm2':
ensure => '4.5.4',
package => 'pm2',
target => '/usr/lib',
# user => $serviceuser,
install_options => ['-g'],
# require => File['/opt/packages']
}
nodejs::npm { 'pm2-intercom':
ensure => '1.0.0',
package => 'pm2-intercom',
target => '/usr/lib',
install_options => ['-g'],
# require => File['/opt/packages']
}
natemccurdy
08/25/2022, 5:07 PMnodejs::npm
to find the title of the exec
that it generates.natemccurdy
08/25/2022, 5:07 PMcdenneen
08/25/2022, 5:07 PMcdenneen
08/25/2022, 5:07 PMbastelfreak
08/25/2022, 5:07 PMcdenneen
08/25/2022, 5:08 PMbastelfreak
08/25/2022, 5:08 PMSlackbot
08/25/2022, 5:08 PMnatemccurdy
08/25/2022, 5:08 PMnatemccurdy
08/25/2022, 5:08 PMcdenneen
08/25/2022, 5:09 PMcdenneen
08/25/2022, 5:10 PMcdenneen
08/25/2022, 5:10 PMbastelfreak
08/25/2022, 5:10 PMcdenneen
08/25/2022, 5:11 PMcdenneen
08/25/2022, 5:12 PMDr Bunsen Honeydew
08/25/2022, 5:45 PMSlackbot
08/25/2022, 6:10 PMDr Bunsen Honeydew
08/25/2022, 8:45 PMYury Bushmelev
08/26/2022, 2:40 AMSlackbot
08/26/2022, 10:29 AMhelindbe
08/26/2022, 3:15 PMSlackbot
08/28/2022, 8:35 AMSlackbot
08/29/2022, 8:46 AMSlackbot
08/29/2022, 10:21 AMSlackbot
08/29/2022, 12:03 PMBrian Schonecker
08/29/2022, 12:03 PM$customer = $my_customer.upcase
file {"/mnt/${customer}": ensure => directory}
vs:
that upper-cases the customer name. That seems like I'm obfuscating things even more, however it does solve all of my issues. I keep going back and forth on the design of this module. About 95% of what's already in the data/application/brooklyn hierarchy works fine. It seems silly to me to move all of that stuff into the puppet-brooklyn module just to take care of the edge case (ie: upper-case naming) but it also seems silly to have my 'brooklyn' data in two places.
Every time I start moving my hiera stuff to my brooklyn application I question why I'm doing so because 95% of the existing hierarchy is already working perfectly.
Any comments or suggestions are highly appreciated!