0

Or does the master cache the repository from the internet and provision for the agent nodes?

In either case, how are updates deployed and managed? What pre-empts what?

Edit: How are rpm updates, yum updates, tarball updates, zypper updates, apt-get updates etc.. deployed/managed/supervised.

Mugambo
  • 41
  • 5

1 Answers1

0

How are rpm updates, yum updates, tarball updates, zypper updates, apt-get updates etc.. deployed/managed/supervised.

There is no default configuration for this. You define it yourself.

For my Debian systems I use puppet to update the apt sources lists on my nodes that point at an approx instance (apt proxy/cache) that just happens to run on my puppet host. If I didn't do that, the machines would just go out using whatever apt sources were defined at install time.

Just as easily you could download things on your puppet master and deliver them to your nodes via file{} resources. It is all up to you. Nothing auto-magical takes place here. You define the behavior you want.

Zoredache
  • 130,897
  • 41
  • 276
  • 420