Skip to content

Commit 30bec40

Browse files
committed
Run phpbrew init as vagrant user too.
1 parent 276a247 commit 30bec40

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

manifests/init.pp

+14-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
subscribe => File['/usr/bin/phpbrew'],
106106
refreshonly => true,
107107
}
108-
108+
109109
file { $php_install_dir:
110110
ensure => 'directory',
111111
require => Exec['init phpbrew'],
@@ -124,6 +124,19 @@
124124

125125
# Load phpbrew configuration by default.
126126
if $system_wide {
127+
###################################################################
128+
# Init as vagrant user to use when need to switch php
129+
# and use it from vagrant console for example for composer command
130+
###################################################################
131+
exec { 'init phpbrew as vagrant':
132+
command => '/usr/bin/phpbrew init',
133+
creates => '/home/vagrant/.phpbrew/bashrc',
134+
subscribe => File['/usr/bin/phpbrew'],
135+
refreshonly => true,
136+
user => "vagrant",
137+
environment => ["HOME=/home/vagrant"],
138+
}
139+
127140
file { '/opt/phpbrew/bashrc':
128141
ensure => present,
129142
content => template('phpbrew/bashrc.erb'),

0 commit comments

Comments
 (0)