Skip to content
Snippets Groups Projects
nodejs.pp 315 B
Newer Older
  • Learn to ignore specific revisions
  • Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
    # Intelligent cement 
    class egg::nodejs () {
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
      package { 'nodejs':
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
        ensure => 'installed',
      }
      exec { 'install pm2':
        command     => 'npm install pm2 -g',
        path        => ['/bin','/usr/bin'],
        refreshonly => true,
        unless      => 'test -f /usr/bin/pm2',
        require     => Package['nodejs'],
      }
    }