voxpupuli / onceover

Your gateway drug to automated infrastructure testing with Puppet
Apache License 2.0
142 stars 45 forks source link

Add factsets for recent CentOS, Debian, & Ubuntu #297

Closed djschaap closed 3 years ago

djschaap commented 3 years ago

Generated using Puppet 6 running under Vagrant and libvirt.

Add Ubuntu 20.04 focal factset

vagrant init abi/ubuntu2004 \
  && vagrant up \
  && vagrant ssh
wget https://apt.puppet.com/puppet6-release-focal.deb \
  && sudo dpkg -i puppet6-release-focal.deb \
  && sudo apt-get update \
  && sudo apt-get install -y puppet-agent
/opt/puppetlabs/bin/puppet facts > /vagrant/Ubuntu-20.04-64.json

Add CentOS 8.3.2011 factset

vagrant init centos/8 \
 && vagrant up \
 && vagrant ssh
sudo rpm -Uvh https://yum.puppet.com/puppet6-release-el-7.noarch.rpm \
  && sudo yum install -y puppet-agent
/opt/puppetlabs/bin/puppet facts > /vagrant/CentOS-8.3.2011-64.json