Actions
Feature #23729
closedProvide better hostname generator examples
Description
Our discovery rule hostname example with rand() method do not work: abc-<%= @host.facts['bios_vendor'] + '-' + rand(99999) %>
Errors out with: TypeError (no implicit conversion of Integer into String) and "to_s" call must be added. Let's add that to the example screen.
We should also provide some new helpers and allow them in safemode:
- rand_hex(n) - returns SecureRandom.hex(n)
- rand_name - returns NameGenerator.new.next_random_name
- mac_name(mac_address) - returns NameGenerator.new.next_mac_name(mac_address)
Add those to the examples. Note NameGenerator is part of Foreman Core.
Actions