Sunday, 2010-08-29

[2010/08/29 00:14:51] @ Log started by gepetto
[2010/08/29 00:14:51] @ Quit: gniks: Quit: Leaving.
[2010/08/29 01:13:25] @ mikey_p joined channel #puppet
[2010/08/29 01:16:43] @ MattM joined channel #puppet
[2010/08/29 01:16:51] @ nexx joined channel #puppet
[2010/08/29 01:37:05] @ Quit: MattM: Remote host closed the connection
[2010/08/29 01:39:28] @ MattM joined channel #puppet
[2010/08/29 01:43:25] @ kiiNODA joined channel #puppet
[2010/08/29 01:52:48] @ Quit: ricky: Ping timeout: 240 seconds
[2010/08/29 01:59:51] @ Quit: MattM: Remote host closed the connection
[2010/08/29 02:02:17] @ MattM joined channel #puppet
[2010/08/29 02:02:55] @ harlan joined channel #puppet
[2010/08/29 02:03:01] @ Quit: MattM: Remote host closed the connection
[2010/08/29 02:05:17] <harlan> is there a variable name that holds the target operating system version number?
[2010/08/29 02:05:53] @ Quit: SpacePope: Ping timeout: 276 seconds
[2010/08/29 02:06:28] @ SpacePope joined channel #puppet
[2010/08/29 02:06:54] <tholl583xx> harlan: operatingsystemrelease
[2010/08/29 02:07:00] <tholl583xx> harlan: $operatingsystemrelease
[2010/08/29 02:07:49] <harlan> thanks!
[2010/08/29 02:08:20] @ MattM joined channel #puppet
[2010/08/29 02:08:38] <harlan> how do I see what value it has for an arbitrary "client" machine?
[2010/08/29 02:09:40] <tholl583xx> if you install the facter command line client package, you can run "facter" from the command line and see the values
[2010/08/29 02:09:53] <harlan> cool - thanks!
[2010/08/29 02:10:09] <tholl583xx> or you could use ralsh and notify("$operatingsystemrelease") something like that
[2010/08/29 02:10:19] <tholl583xx> you would have to check the docs
[2010/08/29 02:10:23] <tholl583xx> for ralsh
[2010/08/29 02:10:36] <harlan> will do - much appreciated.
[2010/08/29 02:18:28] @ Quit: nul0op: Read error: Connection reset by peer
[2010/08/29 02:20:18] @ nul0op joined channel #puppet
[2010/08/29 02:23:00] @ Determinist joined channel #puppet
[2010/08/29 02:23:08] @ seekalana joined channel #puppet
[2010/08/29 02:23:30] @ Quit: MattM: Remote host closed the connection
[2010/08/29 02:24:25] @ Quit: seekalana: Client Quit
[2010/08/29 02:25:09] <harlan> tholl583xx: I tried ralsh a few times, no luck. 'facter operatingsystemrelease' on the client machine did it though.
[2010/08/29 02:25:13] <harlan> thanks again...
[2010/08/29 02:25:26] @ Quit: Dominic: Ping timeout: 276 seconds
[2010/08/29 02:25:54] @ Dominic joined channel #puppet
[2010/08/29 02:29:18] @ ricky joined channel #puppet
[2010/08/29 02:34:22] @ mattock joined channel #puppet
[2010/08/29 02:44:17] @ MattM joined channel #puppet
[2010/08/29 03:15:51] <mosez> what are the differences between stable, latest and legacy? Oo
[2010/08/29 03:16:08] <mosez> when i look at the version number legacy must be very old?
[2010/08/29 03:20:05] @ harlan left channel #puppet ()
[2010/08/29 03:21:21] <Volcane> its ancient
[2010/08/29 03:22:14] <mosez> # puppetd -V
[2010/08/29 03:22:14] <mosez> 0.24.5
[2010/08/29 03:22:32] <mosez> so the puppet i'm running is ancient
[2010/08/29 03:22:42] <Volcane> yup
[2010/08/29 03:22:52] <mosez> debian packages sucks...
[2010/08/29 03:25:39] <Volcane> nothing prevents you from adding a newer deb to your local repository
[2010/08/29 03:26:00] <Whoop> or backporting
[2010/08/29 03:26:08] <Whoop> 2.6 is in testing
[2010/08/29 03:26:14] <Whoop> (not that I recommend 2.6 - its buggy as hell)
[2010/08/29 03:26:58] <mosez> but 2.6 is marked as stable?
[2010/08/29 03:27:21] <Whoop> By puppet labs yes, for some crazy reason
[2010/08/29 03:27:35] <mosez> hum...
[2010/08/29 03:28:19] @ yannL joined channel #puppet
[2010/08/29 03:28:19] <Volcane> .1 looks like it'll be solid, .0s are usually releases that require some thick gloves :)
[2010/08/29 03:28:30] <Whoop> indeed
[2010/08/29 03:36:07] @ vizzord joined channel #puppet
[2010/08/29 03:48:31] @ gebi joined channel #puppet
[2010/08/29 03:57:31] <mosez> if i want to bind some files to a service that have to be restarted on file updates. how could i do that?
[2010/08/29 04:01:32] <mosez> i've got to add notify => service[apache] to the files?
[2010/08/29 04:01:42] <mosez> or have i got to put something to the service too?
[2010/08/29 04:03:07] @ Quit: MattM: Remote host closed the connection
[2010/08/29 04:07:37] @ Quit: kiiNODA: Quit: omw2nwhr
[2010/08/29 04:09:57] @ MattM joined channel #puppet
[2010/08/29 04:10:10] @ jab_doa joined channel #puppet
[2010/08/29 04:15:06] @ Quit: MattM: Ping timeout: 240 seconds
[2010/08/29 04:17:21] @ MattM joined channel #puppet
[2010/08/29 04:31:07] <Dominic> mosez: you only need the notify on the files to create the relationship. alternatively, subscribe => [ File["a"], File["b"] ] on the service to make the link in the other direction
[2010/08/29 04:31:31] <mosez> dominic: thx
[2010/08/29 04:32:09] <mosez> is it possible to combine static files and templates? first i would like to look for a static file on the puppet master, if that does not exist i want to take the template
[2010/08/29 04:32:47] <mosez> http://pastie.org/1123970 that does not work
[2010/08/29 04:35:27] @ Quit: herdingcat: Quit: Leaving
[2010/08/29 04:36:20] <Dominic> mosez: probably not as you'd use template(..) in the content parameter, not the source
[2010/08/29 04:36:24] <Whoop> mosez: That's because templates use "content" not "source"
[2010/08/29 04:36:29] <Whoop> you'll need to wrap in an if statement
[2010/08/29 04:36:53] <mosez> whoop: have you got an exampke for me?
[2010/08/29 04:40:27] <mosez> for the if statement
[2010/08/29 04:53:10] @ Quit: jmeeuwen: Ping timeout: 240 seconds
[2010/08/29 05:05:31] @ Quit: gebi: Ping timeout: 272 seconds
[2010/08/29 05:19:42] @ Bass10 joined channel #puppet
[2010/08/29 05:25:51] @ Quit: Determinist: Remote host closed the connection
[2010/08/29 05:26:09] @ Quit: TomHome: Quit: Dodo...
[2010/08/29 05:27:23] @ pinoyskull joined channel #puppet
[2010/08/29 05:33:32] @ redpepper is now known as RedPepper
[2010/08/29 05:35:37] @ gebi joined channel #puppet
[2010/08/29 05:45:20] @ bug joined channel #puppet
[2010/08/29 06:02:25] @ cocca joined channel #puppet
[2010/08/29 06:03:15] <cocca> I'm using puppet with passenger... and i want to configer an other folder for the puppet.conf than the default /etc/puppet/puppet.conf... where can i set that?
[2010/08/29 06:04:37] <cocca> with webrick this was possible i think by setting the folder in the sysconfig folder
[2010/08/29 06:22:07] @ Quit: vizzord: Quit: see you
[2010/08/29 06:28:50] @ tecto__ joined channel #puppet
[2010/08/29 06:29:55] @ Quit: bug: Quit: bug
[2010/08/29 06:33:38] @ Quit: matti: Ping timeout: 264 seconds
[2010/08/29 06:34:13] @ matti joined channel #puppet
[2010/08/29 06:34:13] @ Quit: matti: Changing host
[2010/08/29 06:34:13] @ matti joined channel #puppet
[2010/08/29 06:42:26] <cocca> is everybody using puppet.conf in the /etc/puppet folder with passenger?
[2010/08/29 06:42:30] @ bug joined channel #puppet
[2010/08/29 06:43:21] @ Quit: colyte: Quit: ZNC - http://znc.sourceforge.net
[2010/08/29 06:45:18] <cocca> found it myself
[2010/08/29 06:45:25] <cocca> there is a bug on it raised
[2010/08/29 06:45:28] <cocca> http://projects.reductivelabs.com/issues/2774
[2010/08/29 06:56:45] @ Quit: MattM: Remote host closed the connection
[2010/08/29 07:17:20] @ Quit: bug: Quit: bug
[2010/08/29 07:28:32] @ t10000 joined channel #puppet
[2010/08/29 07:29:03] <t10000> Hi, how can I change the time value for updating nodes?
[2010/08/29 07:30:45] @ Quit: t10000: Client Quit
[2010/08/29 07:31:09] @ willifehelr joined channel #puppet
[2010/08/29 07:32:39] @ Quit: Bass10: Read error: Operation timed out
[2010/08/29 07:33:37] @ MattM joined channel #puppet
[2010/08/29 07:34:00] @ Quit: cocca: Ping timeout: 252 seconds
[2010/08/29 07:34:00] <willifehelr> Hi, how can I change the syncing setting for nodes?
[2010/08/29 07:47:10] @ Quit: willifehelr: Quit: willifehelr
[2010/08/29 07:52:49] @ Quit: Dantman: Ping timeout: 240 seconds
[2010/08/29 07:52:51] @ Quit: tecto__: Quit: tecto__
[2010/08/29 07:56:18] @ Quit: akoma1s: Ping timeout: 240 seconds
[2010/08/29 07:56:19] @ akoma1s_ joined channel #puppet
[2010/08/29 07:57:52] @ Dantman joined channel #puppet
[2010/08/29 08:10:34] @ bug joined channel #puppet
[2010/08/29 08:15:46] @ profxavier joined channel #puppet
[2010/08/29 08:15:46] @ Quit: profxavier: Changing host
[2010/08/29 08:15:46] @ profxavier joined channel #puppet
[2010/08/29 08:16:25] @ MPSimmons joined channel #puppet
[2010/08/29 08:28:01] @ Quit: Kaelten: Excess Flood
[2010/08/29 08:38:53] @ Kaelten joined channel #puppet
[2010/08/29 08:47:06] @ Quit: bug: Ping timeout: 265 seconds
[2010/08/29 08:54:54] @ Quit: MPSimmons: Quit: Leaving.
[2010/08/29 08:57:56] @ beata- joined channel #puppet
[2010/08/29 08:59:55] @ littleidea joined channel #puppet
[2010/08/29 09:05:41] @ Mick27 joined channel #puppet
[2010/08/29 09:15:06] @ bug joined channel #puppet
[2010/08/29 09:21:56] @ Quit: griffordson: Quit: griffordson
[2010/08/29 09:30:44] @ Quit: pinoyskull: Quit: Leaving
[2010/08/29 09:51:23] @ Quit: bug: Ping timeout: 245 seconds
[2010/08/29 09:51:53] @ Quit: brothers: Ping timeout: 260 seconds
[2010/08/29 09:58:10] @ Quit: cliff: Ping timeout: 265 seconds
[2010/08/29 10:00:01] @ bug joined channel #puppet
[2010/08/29 10:10:08] @ Quit: bug: Ping timeout: 245 seconds
[2010/08/29 10:12:46] @ Quit: Alagar: Read error: Connection reset by peer
[2010/08/29 10:25:32] @ Alagar joined channel #puppet
[2010/08/29 10:26:44] @ Quit: Mick27: Quit: This computer has gone to sleep
[2010/08/29 10:27:17] @ nico joined channel #puppet
[2010/08/29 10:32:33] @ Quit: nico: Read error: Connection reset by peer
[2010/08/29 10:35:23] @ bug joined channel #puppet
[2010/08/29 10:43:05] @ Quit: bug: Ping timeout: 272 seconds
[2010/08/29 10:45:40] @ pinoyskull joined channel #puppet
[2010/08/29 10:50:50] @ Quit: randybias: Quit: Leaving...
[2010/08/29 11:07:36] @ thekad-afk is now known as thekad
[2010/08/29 11:09:31] @ mawi joined channel #puppet
[2010/08/29 11:11:22] @ ludicruz joined channel #puppet
[2010/08/29 11:19:48] @ Quit: akoma1s_: Ping timeout: 240 seconds
[2010/08/29 11:20:17] @ colyte joined channel #puppet
[2010/08/29 11:22:31] @ akoma1s joined channel #puppet
[2010/08/29 11:26:09] @ thekad is now known as thekad-afk
[2010/08/29 11:26:48] @ Quit: akoma1s: Ping timeout: 240 seconds
[2010/08/29 11:27:25] @ Quit: rcrowley: Quit: rcrowley
[2010/08/29 11:28:18] @ akoma1s joined channel #puppet
[2010/08/29 11:30:02] @ rcrowley joined channel #puppet
[2010/08/29 11:33:48] @ gniks joined channel #puppet
[2010/08/29 11:37:02] @ littleidea_ joined channel #puppet
[2010/08/29 11:39:54] @ thekad-afk is now known as thekad
[2010/08/29 11:46:28] @ Quit: mawi: Ping timeout: 240 seconds
[2010/08/29 11:46:48] @ thekad is now known as thekad-afk
[2010/08/29 11:47:05] @ mawi joined channel #puppet
[2010/08/29 11:49:11] @ Quit: littleidea_: Quit: littleidea_
[2010/08/29 11:53:29] @ cliff joined channel #puppet
[2010/08/29 12:06:18] @ Quit: alban2: Quit: Leaving.
[2010/08/29 12:06:36] @ alban2 joined channel #puppet
[2010/08/29 12:16:03] @ AimanA joined channel #puppet
[2010/08/29 12:21:50] @ Mick27 joined channel #puppet
[2010/08/29 12:28:28] @ Quit: mawi: Ping timeout: 245 seconds
[2010/08/29 12:37:45] @ ezmobius joined channel #puppet
[2010/08/29 12:40:25] @ thekad-afk is now known as thekad
[2010/08/29 12:43:50] @ Quit: Mick27: Quit: This computer has gone to sleep
[2010/08/29 12:48:38] @ thekad is now known as thekad-afk
[2010/08/29 12:54:06] @ Quit: BLZbubba: Remote host closed the connection
[2010/08/29 12:58:33] @ Quit: nexx: Quit: quit
[2010/08/29 13:04:23] @ Quit: alban2: Quit: Leaving.
[2010/08/29 13:04:36] @ alban2 joined channel #puppet
[2010/08/29 13:07:17] @ Quit: yannL: Remote host closed the connection
[2010/08/29 13:09:03] <ludicruz> Question: I've got puppet installed on 2 ubuntu 10.04 machines. I used the gems to install 2.6.0 release since ubuntu 10.04 comes w/ 0.25.x. One is the server and one is a client. I've also installed the dashboard on the server but when I start it up there are no reports being shown. I've done everything in the README to install dashboard. any ideas why the dashboard doesn't show the client node?
[2010/08/29 13:14:15] @ emiddd joined channel #puppet
[2010/08/29 13:37:16] @ Quit: achester: Ping timeout: 258 seconds
[2010/08/29 13:48:02] @ Quit: spacex: Remote host closed the connection
[2010/08/29 13:48:37] @ spacex joined channel #puppet
[2010/08/29 13:56:49] @ achester joined channel #puppet
[2010/08/29 14:05:36] @ thekad-afk is now known as thekad
[2010/08/29 14:14:50] @ Quit: mattock: Ping timeout: 258 seconds
[2010/08/29 14:21:15] @ Quit: fcami: Quit: sleep. now.
[2010/08/29 14:24:12] @ bug joined channel #puppet
[2010/08/29 14:25:46] @ Quit: bug: Client Quit
[2010/08/29 14:30:49] @ thekad is now known as thekad-afk
[2010/08/29 14:32:43] @ thekad-afk is now known as thekad
[2010/08/29 14:33:15] @ phips_ joined channel #puppet
[2010/08/29 14:33:20] @ Quit: phips_: Client Quit
[2010/08/29 14:33:26] @ fredden joined channel #puppet
[2010/08/29 14:43:20] @ Quit: profxavier: Ping timeout: 276 seconds
[2010/08/29 14:49:20] @ Quit: adrian_broher: Quit: Verlassend
[2010/08/29 14:52:37] @ Quit: akoma1s: Remote host closed the connection
[2010/08/29 14:53:36] @ Quit: stevenjenkins: Quit: Leaving.
[2010/08/29 14:53:44] @ akoma1s joined channel #puppet
[2010/08/29 14:54:44] @ bug joined channel #puppet
[2010/08/29 14:55:09] @ Quit: bug: Client Quit
[2010/08/29 14:55:13] @ bug joined channel #puppet
[2010/08/29 14:55:53] @ Quit: timdau: Ping timeout: 255 seconds
[2010/08/29 14:56:46] @ lak joined channel #puppet
[2010/08/29 14:59:46] @ Quit: gebi: Ping timeout: 252 seconds
[2010/08/29 14:59:52] @ Quit: bug: Client Quit
[2010/08/29 15:03:25] @ braind joined channel #puppet
[2010/08/29 15:04:22] @ Quit: akoma1s: Read error: Connection reset by peer
[2010/08/29 15:04:36] @ bug joined channel #puppet
[2010/08/29 15:04:58] @ p3rror joined channel #puppet
[2010/08/29 15:05:44] @ thekad is now known as thekad-afk
[2010/08/29 15:08:47] @ Quit: bug: Client Quit
[2010/08/29 15:17:32] @ Quit: ezmobius: Remote host closed the connection
[2010/08/29 15:21:27] @ akoma1s joined channel #puppet
[2010/08/29 15:21:32] @ bug joined channel #puppet
[2010/08/29 15:22:24] @ rodnet joined channel #puppet
[2010/08/29 15:24:01] @ Quit: bug: Client Quit
[2010/08/29 15:24:38] @ Quit: mikey_p: Quit: mikey_p
[2010/08/29 15:25:17] @ timdau_ joined channel #puppet
[2010/08/29 15:26:51] @ timdau_ is now known as timdau
[2010/08/29 15:30:16] @ Quit: rodnet: Quit: rodnet
[2010/08/29 15:38:25] @ Quit: gniks: Ping timeout: 265 seconds
[2010/08/29 15:39:31] @ Quit: p3rror: Read error: Connection reset by peer
[2010/08/29 15:48:08] @ thekad-afk is now known as thekad
[2010/08/29 15:49:55] @ Quit: braind: Quit: $diety only knows
[2010/08/29 15:52:41] @ Quit: lak: Quit: lak
[2010/08/29 15:54:02] @ p3rror joined channel #puppet
[2010/08/29 15:54:30] @ Quit: pinoyskull: Ping timeout: 258 seconds
[2010/08/29 15:55:46] @ Quit: littleidea: Quit: littleidea
[2010/08/29 16:02:54] @ bug joined channel #puppet
[2010/08/29 16:07:12] @ pinoyskull joined channel #puppet
[2010/08/29 16:08:28] @ MPSimmons joined channel #puppet
[2010/08/29 16:09:48] @ Quit: jab_doa: Quit: Verlassend
[2010/08/29 16:10:14] @ gniks joined channel #puppet
[2010/08/29 16:17:58] @ Bass10 joined channel #puppet
[2010/08/29 16:20:12] @ brothers joined channel #puppet
[2010/08/29 16:35:12] @ Quit: MPSimmons: Quit: Leaving.
[2010/08/29 16:39:05] @ thekad is now known as thekad-afk
[2010/08/29 16:40:01] @ tecto__ joined channel #puppet
[2010/08/29 16:40:01] @ Quit: tecto__: Changing host
[2010/08/29 16:40:01] @ tecto__ joined channel #puppet
[2010/08/29 16:47:39] @ Quit: nul0op: Quit: Leaving
[2010/08/29 17:14:56] @ littleidea joined channel #puppet
[2010/08/29 17:24:49] @ Quit: kogent: Read error: Connection reset by peer
[2010/08/29 17:25:00] @ thekad-afk is now known as thekad
[2010/08/29 17:25:58] @ kogent joined channel #puppet
[2010/08/29 17:31:07] @ xb95 left channel #puppet ("Leaving channel.")
[2010/08/29 17:36:39] @ kolla joined channel #puppet
[2010/08/29 17:52:48] @ Quit: jaredrhine: Ping timeout: 265 seconds
[2010/08/29 17:57:13] @ jaredrhine joined channel #puppet
[2010/08/29 18:02:32] @ RedPepper is now known as redpepper
[2010/08/29 18:14:55] @ mikey_p joined channel #puppet
[2010/08/29 18:25:56] @ Quit: ludicruz: Ping timeout: 252 seconds
[2010/08/29 18:46:42] @ Hallaj joined channel #puppet
[2010/08/29 18:54:52] @ Quit: strattog: Read error: Operation timed out
[2010/08/29 18:56:09] @ strattog joined channel #puppet
[2010/08/29 19:03:34] @ littleidea_ joined channel #puppet
[2010/08/29 19:07:29] @ Quit: Bass10: Ping timeout: 240 seconds
[2010/08/29 19:20:36] @ Quit: littleidea: Quit: littleidea
[2010/08/29 19:21:27] @ Quit: bug: Quit: bug
[2010/08/29 19:24:35] @ thekad is now known as thekad-afk
[2010/08/29 19:25:21] @ Quit: littleidea_: Quit: littleidea_
[2010/08/29 19:27:26] @ Quit: lutter: Quit: Leaving.
[2010/08/29 19:28:36] @ bug joined channel #puppet
[2010/08/29 19:32:25] @ lutter joined channel #puppet
[2010/08/29 19:32:50] @ Quit: Dantman: Ping timeout: 265 seconds
[2010/08/29 19:35:42] @ rmiller4pi8 joined channel #puppet
[2010/08/29 19:38:30] @ Dantman joined channel #puppet
[2010/08/29 19:42:07] @ brothers_ joined channel #puppet
[2010/08/29 19:44:09] @ Quit: brothers: Ping timeout: 240 seconds
[2010/08/29 19:44:10] @ brothers_ is now known as brothers
[2010/08/29 19:47:47] @ rmiller4pi81 joined channel #puppet
[2010/08/29 19:49:25] @ littleidea joined channel #puppet
[2010/08/29 19:51:02] @ Quit: rmiller4pi8: Ping timeout: 264 seconds
[2010/08/29 19:57:48] @ Quit: ezekiel: Quit: new kernel
[2010/08/29 20:01:14] @ alexine_dsouza joined channel #puppet
[2010/08/29 20:01:43] @ majikman joined channel #puppet
[2010/08/29 20:01:48] @ majikman left channel #puppet ("Leaving")
[2010/08/29 20:06:14] @ Quit: rmiller4pi81: Ping timeout: 276 seconds
[2010/08/29 20:13:49] @ benkevan joined channel #puppet
[2010/08/29 20:19:31] @ thekad-afk is now known as thekad
[2010/08/29 20:35:06] @ Quit: benkevan: Quit: leaving
[2010/08/29 20:35:10] @ benkevan joined channel #puppet
[2010/08/29 20:37:02] @ Quit: benkevan: Client Quit
[2010/08/29 20:37:18] @ benkevan joined channel #puppet
[2010/08/29 20:37:52] @ Quit: benkevan: Client Quit
[2010/08/29 20:41:38] @ benkevan joined channel #puppet
[2010/08/29 20:42:05] @ cyrus_mc joined channel #puppet
[2010/08/29 20:42:09] <cyrus_mc> I have the following http://pastebin.com/cgFW5svv
[2010/08/29 20:42:25] <cyrus_mc> however, the tag that I set in the node doesn't seem to take effect in the class base
[2010/08/29 20:44:58] @ Quit: pinoyskull: Read error: Connection reset by peer
[2010/08/29 20:45:24] @ Quit: benkevan: Client Quit
[2010/08/29 20:45:52] @ pinoyskull joined channel #puppet
[2010/08/29 20:47:35] @ AimanA is now known as HouseAway
[2010/08/29 20:58:29] @ Quit: pinoyskull: Ping timeout: 258 seconds
[2010/08/29 21:03:00] @ OpenMedia joined channel #puppet
[2010/08/29 21:04:09] @ Quit: tecto__: Ping timeout: 240 seconds
[2010/08/29 21:10:56] @ pinoyskull joined channel #puppet
[2010/08/29 21:13:36] @ Quit: cliff: Read error: Operation timed out
[2010/08/29 21:13:41] @ Quit: p3rror: Ping timeout: 260 seconds
[2010/08/29 21:14:15] @ ezekiel joined channel #puppet
[2010/08/29 21:27:35] @ Quit: mikey_p: Quit: mikey_p
[2010/08/29 21:28:15] @ p3rror joined channel #puppet
[2010/08/29 21:35:11] @ mikey_p joined channel #puppet
[2010/08/29 21:36:33] @ Quit: strattog: Read error: Operation timed out
[2010/08/29 21:38:20] @ strattog joined channel #puppet
[2010/08/29 21:41:04] @ Quit: cyrus_mc: Quit: leaving
[2010/08/29 21:43:32] @ Quit: pinoyskull: Quit: Leaving
[2010/08/29 21:52:56] @ Quit: nwp_: Quit: Leaving
[2010/08/29 21:53:15] @ nwp_ joined channel #puppet
[2010/08/29 21:53:58] @ nwp_ is now known as nwp
[2010/08/29 21:56:56] @ Quit: shade\: Excess Flood
[2010/08/29 21:59:00] @ shade\ joined channel #puppet
[2010/08/29 22:10:39] @ _CTAPOMAK_ joined channel #puppet
[2010/08/29 22:12:26] @ pinoyskull joined channel #puppet
[2010/08/29 22:20:21] @ nakano is now known as nakano_
[2010/08/29 22:20:25] @ nakano_ is now known as nakano
[2010/08/29 22:21:02] @ Quit: gniks: Quit: Leaving.
[2010/08/29 22:24:09] @ Quit: fredden: Quit: Leaving
[2010/08/29 22:24:40] @ gniks joined channel #puppet
[2010/08/29 22:32:13] @ Quit: brothers: Quit: brothers
[2010/08/29 22:32:59] @ brothers joined channel #puppet
[2010/08/29 22:38:16] @ Quit: Dantman: Ping timeout: 272 seconds
[2010/08/29 22:40:52] @ Quit: shade\: Excess Flood
[2010/08/29 22:43:48] @ shade\ joined channel #puppet
[2010/08/29 22:51:26] @ nexx joined channel #puppet
[2010/08/29 22:56:20] @ PaulWay[w] joined channel #puppet
[2010/08/29 23:02:29] @ Dantman joined channel #puppet
[2010/08/29 23:02:53] @ johnf joined channel #puppet
[2010/08/29 23:03:06] <johnf> Anyone seen this before? "err: Could not run Puppet configuration client: Could not find a default provider for vcsrepo"
[2010/08/29 23:07:40] @ vizzord joined channel #puppet
[2010/08/29 23:08:07] @ Quit: shade\: Excess Flood
[2010/08/29 23:09:50] @ shade\ joined channel #puppet
[2010/08/29 23:11:25] @ Quit: alexine_dsouza: Read error: Connection reset by peer
[2010/08/29 23:13:59] @ Quit: mikey_p: Quit: mikey_p
[2010/08/29 23:15:37] @ thekad is now known as thekad-afk
[2010/08/29 23:28:03] @ Quit: OpenMedia: Quit: Leaving.
[2010/08/29 23:28:32] @ Quit: spacex: Ping timeout: 276 seconds
[2010/08/29 23:31:58] <ohadlevy> johnf: did you enable pluginsync?
[2010/08/29 23:32:29] <johnf> ohadlevy: worked it out. I assumed I had bzr installed but I didn't. Thanks
[2010/08/29 23:44:40] @ josbal joined channel #puppet
[2010/08/29 23:45:12] <josbal> hey all... was wondering if there is a doco for migrating server from old to new puppetmaster?
[2010/08/29 23:45:31] @ lutter1 joined channel #puppet
[2010/08/29 23:45:35] @ Quit: lutter1: Client Quit
[2010/08/29 23:45:36] @ Quit: p3rror: Ping timeout: 265 seconds
[2010/08/29 23:46:47] @ kenneho joined channel #puppet
[2010/08/29 23:46:49] @ johnf left channel #puppet ()
[2010/08/29 23:48:54] @ mattock joined channel #puppet
[2010/08/29 23:53:45] @ gebi joined channel #puppet
[2010/08/29 23:55:45] @ Quit: gniks: Quit: Leaving.

Generated by irclog2html.py 2.9.2 by Marius Gedminas - find it at mg.pov.lt!