search for: enccalls

Displaying 1 result from an estimated 1 matches for "enccalls".

Did you mean: ccalls
2013 Sep 09
7
Puppet calls the ENC twice for some nodes.
Hi everyone, I have an issue setting up Puppet with an ENC. For some nodes, puppet calls my ENC twice with a 2 sec interval. All my agents share the same configuration file. Considering this very basic ENC : #!/bin/bash > nodeName=$1 > echo `date` $nodeName >> /tmp/encCalls > echo "--- > classes: > testClass:" Here is the content of /tmp/encCalls after a few run on two nodes. Mon Sep 9 11:36:15 CEST 2013 : host1 > Mon Sep 9 11:36:17 CEST 2013 : host1 > Mon Sep 9 11:41:04 CEST 2013 : host2 > Mon Sep 9 11:42:04 CEST 2013 : host1 &gt...