You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the hidepid value for the /proc mount is set in el9, it will be a string like "invisible" or "default", however, the code in the install.pp manifest attempts to compare the value of hidepid to an integer, which is fine in other OS flavors because it returns an integer. However, in el9 it returns a string and then errors out because its trying to see if "invisible" > 0. We need to rework this part of the code to be more robust.
The text was updated successfully, but these errors were encountered:
If the hidepid value for the /proc mount is set in el9, it will be a string like "invisible" or "default", however, the code in the install.pp manifest attempts to compare the value of hidepid to an integer, which is fine in other OS flavors because it returns an integer. However, in el9 it returns a string and then errors out because its trying to see if "invisible" > 0. We need to rework this part of the code to be more robust.
The text was updated successfully, but these errors were encountered: