Rolf Fujino

Results 8 comments of Rolf Fujino

@yannickstruyf3 & @tuxtof cloning is already available, it is just undocumented on how to do it, with only a couple of mentions that it even exists. After a number of...

@yannickstruyf3, @lxkm, & @tuxtof after further development I have found some gotchas: - Not all information is stored in the state file, namely 'parent_reference', so every terraform run will reboot...

I can confirm the issue is reproducible in version 14.14.25 of the Chef-Client.

This is what is breaking the code: ` pe_size = pv_size / pv[0].pe_count` On a completely new/clean physical volume, the `pe_count` is equal to '0'. ``` [root@default-centos-74 ~]# pvs /dev/sdb...

For those curious this is my workaround: ```ruby lvm_physical_volume '/dev/sdb' do if `pvs /dev/sdb -o pv_pe_count --noheadings | sed 's/ //g\` != 0 action :resize else action :create end end...

With the version 13+ of the chef-client you should make sure to use full paths in my workaround, otherwise it won't work because it can't find the commands. ```ruby lvm_physical_volume...

Just to spell it out for the readers, update your `tomcat_install` resource to the following: ``` tomcat_install '10.1.9' do tarball_base_uri 'https://archive.apache.org/dist/tomcat/' checksum_base_uri 'https://archive.apache.org/dist/tomcat/' end

@lbr38, fyi you can sign up for free as an Okta developer for free and test/develop SSO. I am personally going to try to follow this document to see if...