I have this:
class aptsetup {
file { "/etc/apt/sources.list":
owner => root,
group => root,
mode => 644,
source => "puppet://asus-vista-box.lokku.net/files/etc/
apt/sources.list"
}
}
exec { subscribe-echo:
command => "/usr/bin/apt-get -q -q update",
logoutput => false,
refreshonly => true,
subscribe => file["/etc/apt/sources.list"]
}
I'd like to execute enother command after "/usr/bin/apt-get -q -q
update" for example "touch /home/test"
In wich way you suggest to do that?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en
-~----------~----~----~----~------~----~------~--~---