LiveCD com navalha fantoche

2

Eu tenho alguns servidores e quero fornecer CD ao vivo e reinstalações de O / S usando o servidor de navalha de um painel autocodificado. O Razor tem uma documentação muito ruim e eu vi apenas algumas informações sobre a instalação do O / S.

Existe uma maneira de inicializar o servidor bare metal em uma iso do LiveCD usando o barbeador?

    
por Glueon 29.09.2014 / 00:45

1 resposta

2

Sim, eu uso o RescueCD. Meu gentoo.task/boot_install.erb

#!ipxe
echo Razor <%= task.label %> task boot_call
echo Installation node: <%= node_url  %>
echo Installation repo: <%= repo_url %>

sleep 3

kernel <%= repo_url("/rescue64") %> <%= render_template("kernel_args").strip %> || goto error
initrd <%= repo_url("/initram.igz") %> || goto error
boot

:error
prompt --key s --timeout 60 ERROR, hit 's' for the iPXE shell; reboot in 60 seconds && shell || reboot

e gentoo.task/kernel_args.erb ,

vga=791 setkmap=us console=tty0 console=ttyS1,115200 netboot=<%= repo_url("/sysrcd.dat") %> rootpass=<%= node.root_password %> ar_source=http://172.100.1.1:18080/autoruns

o diretório autoruns é host no servidor DHCP.

    
por 03.12.2014 / 17:00

Tags