Skip to content
Snippets Groups Projects
nodejs.pp 325 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',
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
        notify => Exec['install pm2'],
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
      }
      exec { 'install pm2':
        command     => 'npm install pm2 -g',
        path        => ['/bin','/usr/bin'],
        unless      => 'test -f /usr/bin/pm2',
        require     => Package['nodejs'],
      }
    }