Displaying 2 results from an estimated 2 matches for "create_inst".
2009 Nov 10
23
Puppet Not Running chkconfig correctly.
So, I noticed that when adding a service to puppet, puppet is running
a chkconfig <service>. However, as far as I can tell, puppet should be
running a chkconfig --add <service>, otherwise the symlinks don''t get
created from the service in /etc/rc.d/rc6.d back to the service in
/etc/init.d. As as a result, the service is not stopped on shut down.
I must be missing something
2009 Dec 04
0
Could not find dependency Class
...mont_node {
include jboss::server
include tomcat::server
}
File /etc/puppet/manifests/nodes/fr,xxx,com:
node ''pokey.fr.xxx.com'' inherits app_node {
include elements::base
include starterkit::base
}
File /etc/puppet/modules/tomcat/manifests/init.pp:
define tomcat::create_inst($version, $software) {
package {
"tf-tomcat-${software}-${name}":
before => File["/opt/tomcat/${name}/${software}/current"],
ensure => installed,
require => Class["java::jdk"];
}
}
--
You received this mess...