Actions
Bug #14223
closedUpdate katello-rhsm-consumer for atomic
Difficulty:
Triaged:
Bugzilla link:
Pull request:
Description
The mechanism used by Katello to determine if a host is atomic is flawed at the provisioning time.
https://github.com/Katello/puppet-certs/blob/master/templates/rhsm-katello-reconfigure.erb#L27
Katello checks for
if [ -e "/run/ostree-booted" ] at the provisioning time, which doesnot exist. then #atomic setup
This needs to be replaced with
grep -i 'Atomic Host' /etc/os-release 2>&1> /dev/null if [ $? -eq 0 ] then #atomic setup
Actions