This message was deleted.
# puppet
s
This message was deleted.
r
pretty sure the path should be manifests plural, not manifest.
c
I was hoping that was it, but I changed it to plural and still same error.
Copy code
local_modules/
├── profile
│   ├── files
│   ├── lib
│   └── manifests
│       └── manifest
│           └── nginx
└── role
    └── manifest
        └── nginx.pp
OK, figured it out. It was the extra
manifest
dir I had under the
pofile/manifest
Plus I fixed the
role/manifest
to
role/manifests
too.
e
Side comment: pls always paste stuff as text, including execution outputs. Better visualization and ability to copy/paste are some advantages.
s
Another side comment. (or two): Are you leveraging
pdk
for your code generation? That will help you with making sure all of your directories and files are in the right place (particularly with
pdk new class
. Also,
pdk validate
is amazingly useful to make sure you're syntax is correct before you try to deploy.