diff options
Diffstat (limited to 'resources/tools/testbed-setup/ansible/roles/cobbler/files/etc')
-rw-r--r-- | resources/tools/testbed-setup/ansible/roles/cobbler/files/etc/cobbler/dhcp.template | 86 | ||||
-rw-r--r-- | resources/tools/testbed-setup/ansible/roles/cobbler/files/etc/httpd/conf.d/cobbler_web.conf | 33 |
2 files changed, 0 insertions, 119 deletions
diff --git a/resources/tools/testbed-setup/ansible/roles/cobbler/files/etc/cobbler/dhcp.template b/resources/tools/testbed-setup/ansible/roles/cobbler/files/etc/cobbler/dhcp.template deleted file mode 100644 index 965562ae0a..0000000000 --- a/resources/tools/testbed-setup/ansible/roles/cobbler/files/etc/cobbler/dhcp.template +++ /dev/null @@ -1,86 +0,0 @@ -# ****************************************************************** -# Cobbler managed dhcpd.conf file -# -# generated from cobbler dhcp.conf template ($date) -# Do NOT make changes to /etc/dhcpd.conf. Instead, make your changes -# in /etc/cobbler/dhcp.template, as /etc/dhcpd.conf will be -# overwritten. -# -# ****************************************************************** - -ddns-update-style interim; - -allow booting; -allow bootp; - -ignore client-updates; -set vendorclass = option vendor-class-identifier; - -option pxe-system-type code 93 = unsigned integer 16; - -subnet 10.30.51.0 netmask 255.255.255.0 { - option routers 10.30.51.1; - option domain-name "linuxfoundation.org"; - option domain-name-servers 1.1.1.1, 8.8.8.8; - option subnet-mask 255.255.255.0; - range dynamic-bootp 10.30.51.2 10.30.51.254; - default-lease-time 600; - max-lease-time 7200; - next-server $next_server; - class "pxeclients" { - match if substring (option vendor-class-identifier, 0, 9) = "PXEClient"; - if option pxe-system-type = 00:02 { - filename "ia64/elilo.efi"; - } else if option pxe-system-type = 00:06 { - filename "grub/grub-x86.efi"; - } else if option pxe-system-type = 00:07 { - filename "grub/grub-x86_64.efi"; - } else { - filename "pxelinux.0"; - } - } -} - -#for dhcp_tag in $dhcp_tags.keys(): - ## group could be subnet if your dhcp tags line up with your subnets - ## or really any valid dhcpd.conf construct ... if you only use the - ## default dhcp tag in cobbler, the group block can be deleted for a - ## flat configuration -# group for Cobbler DHCP tag: $dhcp_tag -group { - #for mac in $dhcp_tags[$dhcp_tag].keys(): - #set iface = $dhcp_tags[$dhcp_tag][$mac] - host $iface.name { - hardware ethernet $mac; - #if $iface.ip_address: - fixed-address $iface.ip_address; - #end if - #if $iface.hostname: - option host-name "$iface.hostname"; - #end if - #if $iface.netmask: - option subnet-mask $iface.netmask; - #end if - #if $iface.gateway: - option routers $iface.gateway; - #end if - #if $iface.enable_gpxe: - if exists user-class and option user-class = "gPXE" { - filename "http://$cobbler_server/cblr/svc/op/gpxe/system/$iface.owner"; - } else if exists user-class and option user-class = "iPXE" { - filename "http://$cobbler_server/cblr/svc/op/gpxe/system/$iface.owner"; - } else { - filename "undionly.kpxe"; - } - #else - filename "$iface.filename"; - #end if - ## Cobbler defaults to $next_server, but some users - ## may like to use $iface.system.server for proxied setups - next-server $next_server; - ## next-server $iface.next_server; - } - #end for -} -#end for - diff --git a/resources/tools/testbed-setup/ansible/roles/cobbler/files/etc/httpd/conf.d/cobbler_web.conf b/resources/tools/testbed-setup/ansible/roles/cobbler/files/etc/httpd/conf.d/cobbler_web.conf deleted file mode 100644 index 8b0f9863c1..0000000000 --- a/resources/tools/testbed-setup/ansible/roles/cobbler/files/etc/httpd/conf.d/cobbler_web.conf +++ /dev/null @@ -1,33 +0,0 @@ -# This configuration file enables the cobbler web -# interface (django version) - -<Directory "/usr/share/cobbler/web/"> - SetEnv VIRTUALENV - Options Indexes MultiViews - AllowOverride None - Order allow,deny - Allow from all -</Directory> - -<Directory "/var/www/cobbler_webui_content/"> - Options +Indexes +FollowSymLinks - AllowOverride None - Order allow,deny - Allow from all -</Directory> - -# Use separate process group for wsgi -WSGISocketPrefix /var/run/wsgi -WSGIScriptAlias /cobbler_web /usr/share/cobbler/web/cobbler.wsgi -WSGIDaemonProcess cobbler_web display-name=%{GROUP} -WSGIProcessGroup cobbler_web -WSGIPassAuthorization On - -<IfVersion >= 2.4> - <Location /cobbler_web> - Require all granted - </Location> - <Location /cobbler_webui_content> - Require all granted - </Location> -</IfVersion> |