dev/modules/sysconfig/manifests/sys_upgrade.pp
author ymh <ymh.work@gmail.com>
Wed, 12 Mar 2014 17:19:23 +0100
changeset 608 047aab3a53cf
parent 587 a1aa29e7809f
permissions -rw-r--r--
merge changes from hg.co-ment.org

class sysconfig::sys_upgrade {

  exec {
    'apt_get_update_sysconfig':
      command     => '/usr/bin/apt-get update',
      timeout     => 2400,
      returns     => [ 0, 100 ];
#      refreshonly => true;
    'sys-upgrade':
      command   => '/usr/bin/apt-get upgrade -y',
      timeout => 0,
      require   => Exec['apt_get_update_sysconfig'];
    'sys-dist-upgrade':
      command   => '/usr/bin/apt-get dist-upgrade -y',
      timeout => 0,
      require   => Exec['apt_get_update_sysconfig'];
  }

  Exec['sys-upgrade'] -> Exec['sys-dist-upgrade']
  
}