Gardouille
add74a6e37
Remove the subscription message at the login on the webgui. Add a fact to check if Proxmox is available on the system.
8 lines
101 B
Ruby
8 lines
101 B
Ruby
#is_proxmox.rb
|
|
|
|
Facter.add("is_proxmox") do
|
|
setcode do
|
|
FileTest.exists?("/etc/pve/")
|
|
end
|
|
end
|