Miguel_Velazkez
Miguel_Velazkez

Reputation: 180

install additional packages in vagrant box configured in puphpet

I wan to know if for installing something like vim I have to run the command apt-get install vim or should I change my puphpet config.yaml to do this and then do a vagrant up will the later start the whole process of downloading and installation all over again?

Upvotes: 0

Views: 448

Answers (1)

Juan Treminio
Juan Treminio

Reputation: 2178

You should not manually install anything within your Puppet-managed VM. Use the config.yaml! Simply add the required package to the server.packages array and then run $ vagrant provision.

Upvotes: 1

Related Questions