Knorke
Knorke

Reputation: 267

error message at vagrant start with puppet provisioning

I wrote an automized puppet file for the installation with Vagrant.

It's just for a fast installation for a apache web server (with PHP5, MySQL) and atm it is as simple as possible for the beginning.

Every time I start up my Vagrant I get these messages and couldn't interpret by myself:

←[0;36mnotice: /Stage[main]/Lamp/Package[php5]/ensure: ensure changed 'purged' t
o 'present'←[0m
←[0;36mnotice: /Stage[main]/Lamp/Package[mysql-client]/ensure: ensure changed 'p
urged' to 'present'←[0m
←[0;36mnotice: /Stage[main]/Lamp/Package[mysql-server]/ensure: ensure changed 'p
urged' to 'present'←[0m
←[0;36mnotice: /Stage[main]/Lamp/Package[apache2]/ensure: ensure changed 'purged
' to 'present'←[0m

Upvotes: 2

Views: 119

Answers (1)

Alex
Alex

Reputation: 35168

This is not an error at all. It just says, that the state of those packages has changed from purged to present.

  • purged = not installed
  • present = installed

It just means, the package was installed successfully.

Upvotes: 3

Related Questions