12345678910111213141516171819202122232425262728 |
- #!ipxe
- # RancherOS
- # http://rancher.com/rancher-os/
- :rancheros_menu
- set url releases.rancher.com
- menu RancherOS
- item latest RancherOS Latest (20 MB)
- choose version || goto rancheros_exit
- goto ${version}
- :latest
- echo ${cls}
- set folder os/latest
- goto boot
- :boot
- echo Login in with username: rancher, password: rancher
- echo To install: ros install -d /dev/sda1
- imgfree
- kernel http://${url}/${folder}/vmlinuz rancher.state.autoformat=[/dev/sda] rancher.password=rancher initrd=initrd
- initrd http://${url}/${folder}/initrd
- boot
- :rancheros_exit
- clear menu
- exit 0
|