# Intelligent cement 
class egg::nodejs () {
  package { 'nodejs':
    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'],
  }
}