-
Notifications
You must be signed in to change notification settings - Fork 45
Description
from the simple
class { '::gluster::simple': }I get:
Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find class puppet::facter for gfs1 on node gfs1
So I used the "include_puppet_facter => false" parameters like so:
class site::glusterfs_simple {
class { '::gluster::params': include_puppet_facter => false, }
class { '::gluster::simple': path => '/data/content/', }
Class['::gluster::params'] -> Class['::gluster::simple']
}And now I get:
Error: Could not retrieve catalog from remote server: Error 400 on SERVER: Operating system: 'Ubuntu' not yet supported. at /etc/puppet/modules/gluster/manifests/repo.pp:78 on node gfs1
Now I'm wondering if I did something wrong by defining that parameter as false, as I only found the puppet::facter being declared at the vagrant directory.
Is this application correct?
If not, what I did wrong?
If yes, what parts of the code need change to support Ubuntu at this point?
(edit: I also tried the extended way to apply this class, as is on the manual, with same results)