summaryrefslogtreecommitdiff
path: root/provisioning/modules/pixelated/manifests/source/install_useragent.pp
diff options
context:
space:
mode:
Diffstat (limited to 'provisioning/modules/pixelated/manifests/source/install_useragent.pp')
-rw-r--r--provisioning/modules/pixelated/manifests/source/install_useragent.pp28
1 files changed, 22 insertions, 6 deletions
diff --git a/provisioning/modules/pixelated/manifests/source/install_useragent.pp b/provisioning/modules/pixelated/manifests/source/install_useragent.pp
index d79d4144..8afbac0c 100644
--- a/provisioning/modules/pixelated/manifests/source/install_useragent.pp
+++ b/provisioning/modules/pixelated/manifests/source/install_useragent.pp
@@ -1,4 +1,4 @@
-# install useragent in a virtualenv
+# install useragent in a virtualenv, deploy helper script
# and make sure venv is activated on login
class pixelated::source::install_useragent {
@@ -9,18 +9,34 @@ 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
- logoutput => true,
+ # logoutput => true,
timeout => 0
}
- file { '/home/vagrant/.bashrc':
+ file { '/home/vagrant/activate_custom_node_modules.sh':
owner => 'vagrant',
- mode => '0644',
- source => 'puppet:///modules/pixelated/.bashrc',
+ mode => '0755',
+ source => 'puppet:///modules/pixelated/activate_custom_node_modules.sh',
}
+ exec { 'add_custom_node_modules_to_bashrc':
+ command => "/bin/bash -c 'echo \"source ${virtualenv_path}/bin/activate\" >> /home/vagrant/.bashrc'",
+ unless => "/bin/grep \"source ${virtualenv_path}/bin/activate\" /home/vagrant/.bashrc",
+ user => 'vagrant',
+ require => [Exec['install-pixelated'], File['/home/vagrant/activate_custom_node_modules.sh']]
+ }
+ exec { 'add_custom_node_path_to_bashrc':
+ command => "/bin/bash -c 'echo NODE_PATH=/home/vagrant/boxed_node_modules/node_modules/ >> /home/vagrant/.bashrc'",
+ unless => '/bin/grep NODE_PATH /home/vagrant/.bashrc',
+ user => 'vagrant',
+ }
+ exec { 'add_rule_to_change_to_vagrant_folder_on_login':
+ command => "/bin/echo 'cd /vagrant' >> /home/vagrant/.bashrc",
+ unless => "/bin/grep 'cd /vagrant' /home/vagrant/.bashrc",
+ user => 'vagrant',
+ }
}