Vadym Chepkov

Results 90 comments of Vadym Chepkov

With hiera 5 and just released PE2017.1 this module has run it's course, IMHO. hiera 5 expects you to have hiera.yaml as part of an environment, which is usually deployed...

fact doesn't exist until master packages are installed and user too, for that matter. To solve this issue package collector could to be added ` Package { before +> Class[$title]...

I am pretty much inept, when it comes to tests, if you point me to an example, I can try to make something up, but in my defense, it seems...

It seems related to @bastelfreak change here https://github.com/puppetlabs/puppetlabs-mysql/pull/1624 From what I can tell, the defaults in the defined resource do not match defaults in the type https://github.com/puppetlabs/puppetlabs-mysql/blob/main/lib/puppet/type/mysql_database.rb#L17-L26 And, there is...

So, second error is cause by inconsistency in mysql syntax while character set is accepted without quotes, collate must be quoted ``` alter database testing COLLATE binary; ERROR 1064 (42000):...

imho, provider should update both at once, since setting can be incompatibe ``` alter database testing CHARACTER SET "binary" COLLATE "binary"; Query OK, 1 row affected (0.001 sec) alter database...

That's a good question. I only used it for bootstrap and it didn't start. I will try to see, what correction v8.0.1 will do

PuppetDB runs on the same server as database, so, there is no any delay

From what I can tell, only permissions on configuration files are changing and puppetdb is still operational ``` Info: Using environment 'production' Info: Retrieving pluginfacts Info: Retrieving plugin Notice: /File[/opt/puppetlabs/puppet/cache/lib/facter/puppetdb_version.rb]/ensure:...

@smortex , this code has a logic flaw ``` $puppetdb_major_version = $puppetdb_version ? { 'latest' => '8', 'present' => '8', default => $puppetdb_version.split('.')[0], } ``` Since puppetdb is not installed...