Sebastian, So, this is caused by symlinks in this module which don't have a corresponding directory or file. Puppet 3.7.0 now checks for symlinks, and unfortunately has a File Not Found error if the symlinks don't have a corresponding target.
My only suggestion for working around this is to download the module as a tarball, then untar it, make the expected dirs (files, lib, and templates) and then re-tar and install from your new tarball. Here're the commands I used... tar xzvf gini-archive-0.2.0.tar.gz cd gini-archive-0.2.0/ mkdir files templates lib cd .. rm gini-archive-0.2.0.tar.gz tar cvzf gini-archive-0.2.0.tar.gz gini-archive-0.2.0 rm -r gini-archive-0.2.0 puppet module install gini-archive-0.2.0.tar.gz On Friday, September 5, 2014 9:42:52 AM UTC-7, Sebastian Otaegui wrote: > > Hello, > > I was able to do puppet module install gini/archive before and now with > version 3.7.0 I am getting the following: > > # puppet module install gini/archive > Notice: Preparing to install into /Users/otaeguis/.puppet/modules ... > Notice: Downloading from https://forgeapi.puppetlabs.com ... > Error: No such file or directory @ realpath_rec - > /Users/otaeguis/.puppet/var/puppet-module/cache/tmp-unpacker20140905-10619-xbbs56/gini-archive-0.2.0/files > Error: Try 'puppet help module install' for usage > > Any help on how to workaround this? > > Regards > > -- > Those who do not understand Unix are condemned to reinvent it, poorly. > Any sufficiently recent Microsoft OS contains an ad hoc, > informally-specified, bug-ridden, slow implementation of half of Unix. > -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/99be1a12-04a8-4e5c-af0f-f39fb61d0353%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
