On Wed, Feb 13, 2013 at 5:46 AM, yarlagadda ramya <rams.15...@gmail.com> wrote: > Hi all, > > I wrote a manifest for downloading linux.x64_11gR2_database_1of2.zip and > copying that to another directory and unzipping there..its getting > downloaded but copying and unzipping is not happening..am getting this > error.. > > notice: /Stage[main]//Exec[download_url]/returns: executed successfully > err: /Stage[main]//Exec[copy_unzip]/returns: change from notrun to 0 failed: > /usr/bin/unzip -C /db/oracle /db/combo.zip returned 9 instead of one of [0] > at /root/learning-manifests/combozip.pp:13 > notice: Finished catalog run in 0.19 seconds > > the manifest that i wrote is: > $URL = > "http://192.168.24.171:8080/softwares/linux.x64_11gR2_database_1of2.zip" > $Software = "/db" > $Server = "/db/oracle" > > exec { "download_url": > command => "/usr/bin/wget $URL", > cwd => "$Software", > } > > exec {"copy_unzip": > command => "/usr/bin/unzip -C /db/oracle > /db/linux.x64_11gR2_database_1of2.zip", > cwd => "$Server", > } > > Exec['download_url'] -> Exec['copy_unzip'] > > Please do help me with this.
I answered this yesterday. Anyway, what happens if you run: cd /db/oracle /usr/bin/unzip -C /db/oracle /db/linux.x64_11gR2_database_1of2.zip from a command line? I *still* don't think that you need the '-C /db/oracle' portion of that command, so it should just be: /usr/bin/unzip /db/linux.x64_11gR2_database_1of2.zip But running the full command from the command line should provide you with some output that might help figure out what's going on. Regards, Matt. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To post to this group, send email to puppet-users@googlegroups.com. Visit this group at http://groups.google.com/group/puppet-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.