Actions
Feature #197
closedAllow site local views of unattended installation
Description
While the various unattended views are pretty broadly designed, inevitably some sites will end up having to create their own local versions. This is pretty simple to maintain when foreman is installed via git, but becomes a major pain if using RPM or deb packages.
As an alternative, it would be great if foreman could check for a site local copy of the unattended views, and prefer those over the packaged ones. Then, the view rendering would look roughly like this:
if exists? kickstart-local.rhtml then
render kickstart-local.rhtml
else
render kickstart.rhtml
end
Actions