summaryrefslogtreecommitdiff
path: root/provisioning/modules/pixelated/manifests
diff options
context:
space:
mode:
authorVarac <varac@leap.se>2017-06-07 11:23:56 +0200
committerVarac <varac@leap.se>2017-06-07 11:23:56 +0200
commitce3998dc2c4b57ad790be50bf27e3f682a3205f6 (patch)
tree8a6436e2fe4df9a6acf217999b95548a7c30dc87 /provisioning/modules/pixelated/manifests
parent8146fb2b0c88988fd80a8597f11ae711d9e81350 (diff)
Run activate_custom_node_modules.sh from .bashrc
Diffstat (limited to 'provisioning/modules/pixelated/manifests')
-rw-r--r--provisioning/modules/pixelated/manifests/source/install_useragent.pp15
1 files changed, 10 insertions, 5 deletions
diff --git a/provisioning/modules/pixelated/manifests/source/install_useragent.pp b/provisioning/modules/pixelated/manifests/source/install_useragent.pp
index d79d4144..4fe08d9b 100644
--- a/provisioning/modules/pixelated/manifests/source/install_useragent.pp
+++ b/provisioning/modules/pixelated/manifests/source/install_useragent.pp
@@ -9,7 +9,7 @@ class pixelated::source::install_useragent {
# see https://projects.puppetlabs.com/issues/23053
# therefore we need to explicitily set them here
environment => [ 'USERNAME=vagrant', 'HOME=/home/vagrant' ],
- command => '/usr/bin/make install',
+ command => "/vagrant/install-pixelated.sh -v \"${virtualenv_path}\" -n /home/vagrant/boxed_node_modules",
cwd => '/vagrant',
user => 'vagrant',
# to debug use this
@@ -17,10 +17,15 @@ class pixelated::source::install_useragent {
timeout => 0
}
- file { '/home/vagrant/.bashrc':
- owner => 'vagrant',
- mode => '0644',
- source => 'puppet:///modules/pixelated/.bashrc',
+ file {
+ '/home/vagrant/.bashrc':
+ owner => 'vagrant',
+ mode => '0644',
+ source => 'puppet:///modules/pixelated/.bashrc';
+ '/home/vagrant/activate_custom_node_modules.sh':
+ owner => 'vagrant',
+ mode => '0755',
+ source => 'puppet:///modules/pixelated/activate_custom_node_modules.sh';
}
}