From d2a57a6d350265e4153cea95624c929464e8e2f4 Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Wed, 28 May 2014 18:46:18 +0200 Subject: [PATCH] MT#6253 generate grub and isolinux include files for releases --- build.sh | 25 ++ build_daily.sh | 3 + build_release.sh | 3 + grub.cfg_ce | 14 + grub.cfg_pro | 14 + isolinux.cfg_ce | 24 ++ isolinux.cfg_pro | 26 ++ releases | 13 + templates/boot/grub/grub.cfg | 252 +-------------- templates/boot/isolinux/isolinux.cfg | 450 +-------------------------- 10 files changed, 126 insertions(+), 698 deletions(-) create mode 100755 build.sh create mode 100644 grub.cfg_ce create mode 100644 grub.cfg_pro create mode 100644 isolinux.cfg_ce create mode 100644 isolinux.cfg_pro create mode 100644 releases diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..389379e --- /dev/null +++ b/build.sh @@ -0,0 +1,25 @@ +#!/bin/bash +# Generate the grub options for all the releases +# +BOOT="templates/boot" +GRUB="${BOOT}/grub/grub.cfg" +ISO="${BOOT}/isolinux" +RELEASES=($(grep -v '#' releases | cut -d, -f1 )) +DISTS=($(grep -v '#' releases |cut -d, -f2 )) + +rm -f ${BOOT}/grub/sipwise_ce.cfg ${BOOT}/grub/sipwise_pro.cfg +rm -f ${BOOT}/isolinux/sipwise_ce.cfg ${BOOT}/isolinux/sipwise_pro.cfg + +for index in ${!RELEASES[*]}; do + echo "*** grub template for RELEASE:${RELEASES[$index]} DIST:${DISTS[$index]} ***" + sed -e "s_##VERSION##_${RELEASES[$index]}_g" \ + -e "s_##DIST##_${DISTS[$index]}_g" grub.cfg_ce >> ${BOOT}/grub/sipwise_ce.cfg + sed -e "s_##VERSION##_${RELEASES[$index]}_g" \ + -e "s_##DIST##_${DISTS[$index]}_g" grub.cfg_pro >> ${BOOT}/grub/sipwise_pro.cfg + + echo "*** isolinux template for RELEASE:${RELEASES[$index]} DIST:${DISTS[$index]} ***" + sed -e "s_##VERSION##_${RELEASES[$index]}_g" \ + -e "s_##DIST##_${DISTS[$index]}_g" isolinux.cfg_ce >> ${BOOT}/isolinux/sipwise_ce.cfg + sed -e "s_##VERSION##_${RELEASES[$index]}_g" \ + -e "s_##DIST##_${DISTS[$index]}_g" isolinux.cfg_pro >> ${BOOT}/isolinux/sipwise_pro.cfg +done diff --git a/build_daily.sh b/build_daily.sh index 0aa4f96..d179d7b 100755 --- a/build_daily.sh +++ b/build_daily.sh @@ -22,6 +22,9 @@ find ./source/ -name \*.svn | xargs rm -rf echo "*** Copying isolinux.cfg to syslinux.cfg for grml2usb support ***" cp ./source/templates/boot/isolinux/isolinux.cfg ./source/templates/boot/isolinux/syslinux.cfg +# build grub.cfg release options +./source/build.sh + echo "*** Generating Sipwise ISO ***" sudo /usr/sbin/grml2iso -c ./source/templates -o "${SIPWISE_ISO}" "${GRML_ISO}" diff --git a/build_release.sh b/build_release.sh index c41f166..d1f7464 100755 --- a/build_release.sh +++ b/build_release.sh @@ -7,6 +7,9 @@ TEMPLATES="templates" if [ "${PUBLIC}" != "no" ]; then echo "*** Building public ISO ***" TEMPLATES="templates-ce" +else + # build grub.cfg release options + ./source/build.sh fi echo "*** Retrieving Grml Release ISO [${GRML_ISO}] ***" diff --git a/grub.cfg_ce b/grub.cfg_ce new file mode 100644 index 0000000..b4824fd --- /dev/null +++ b/grub.cfg_ce @@ -0,0 +1,14 @@ +menuentry "sip:providerCE (DHCP) - version ##VERSION##" { + echo 'Loading kernel...' + linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=##DIST## netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=##VERSION## + echo 'Loading initrd...' + initrd /boot/%SHORT_NAME%/initrd.img +} + +menuentry "sip:providerCE (static NW) - version ##VERSION##" { + echo 'Loading kernel...' + linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=##DIST## netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=##VERSION## + echo 'Loading initrd...' + initrd /boot/%SHORT_NAME%/initrd.img +} + diff --git a/grub.cfg_pro b/grub.cfg_pro new file mode 100644 index 0000000..4084177 --- /dev/null +++ b/grub.cfg_pro @@ -0,0 +1,14 @@ +menuentry "sip:providerPRO - sp1 / ##VERSION## release" { + echo 'Loading kernel...' + linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=##DIST## netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=##VERSION## + echo 'Loading initrd...' + initrd /boot/%SHORT_NAME%/initrd.img +} + +menuentry "sip:providerPRO - sp2 / ##VERSION## release" { + echo 'Loading kernel...' + linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=##DIST## netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=##VERSION## + echo 'Loading initrd...' + initrd /boot/%SHORT_NAME%/initrd.img +} + diff --git a/isolinux.cfg_ce b/isolinux.cfg_ce new file mode 100644 index 0000000..40914a0 --- /dev/null +++ b/isolinux.cfg_ce @@ -0,0 +1,24 @@ +label ce##VERSION## + menu label sip:providerCE (DHCP) - version ##VERSION## + kernel /boot/%SHORT_NAME%/vmlinuz + append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=##DIST## netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=##VERSION## + + text help + Install sip:provider + community edition, version ##VERSION##. + Retrieve network configuration + via DHCP. + endtext + +label cenw##VERSION## + menu label sip:providerCE (static NW) - version ##VERSION## + kernel /boot/%SHORT_NAME%/vmlinuz + append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=##DIST## netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=##VERSION## + + text help + Install sip:provider + community edition, version ##VERSION##. + Use static IP configuration, adjust + in boot command line if necessary. + endtext + diff --git a/isolinux.cfg_pro b/isolinux.cfg_pro new file mode 100644 index 0000000..e6cca3a --- /dev/null +++ b/isolinux.cfg_pro @@ -0,0 +1,26 @@ +label prosp1nw-##VERSION## + menu label sip:providerPRO - sp1 / ##VERSION## release + kernel /boot/%SHORT_NAME%/vmlinuz + append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=##DIST## netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=##VERSION## + + text help + Install sip:provider + professional edition, version ##VERSION##. + Install first node of HA setup. + Use static IP configuration, adjust + in boot command line if necessary. + endtext + +label prosp2nw-##VERSION## + menu label sip:providerPRO - sp2 / ##VERSION## release + kernel /boot/%SHORT_NAME%/vmlinuz + append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=##DIST## netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=##VERSION## + + text help + Install sip:provider + professional edition, version ##VERSION##. + Install second node of HA setup. + Use static IP configuration, adjust + in boot command line if necessary. + endtext + diff --git a/releases b/releases new file mode 100644 index 0000000..9b6a1f0 --- /dev/null +++ b/releases @@ -0,0 +1,13 @@ +# list of releases +# no spaces please!! +mr3.3,wheezy +mr3.2.2,wheezy +mr3.2.1,wheezy +mr3.2,wheezy +3.1,wheezy +3.0,wheezy +2.8,squeeze +2.7,squeeze +2.6,squeeze +2.5,squeeze +2.4,squeeze diff --git a/templates/boot/grub/grub.cfg b/templates/boot/grub/grub.cfg index 7ea9b39..8a73c88 100644 --- a/templates/boot/grub/grub.cfg +++ b/templates/boot/grub/grub.cfg @@ -77,131 +77,7 @@ menuentry "sip:providerCE (static NW) - trunk version" { initrd /boot/%SHORT_NAME%/initrd.img } -menuentry "sip:providerCE (DHCP) - pre-release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpautobuildrelease=3.0-rc1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (static NW) - pre-release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpautobuildrelease=3.0-rc1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (DHCP) - version mr3.2.1" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=3.2.1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (static NW) - version mr3.2.1" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=mr3.2.1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (DHCP) - version 3.1" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=3.1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (static NW) - version 3.1" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=3.1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (DHCP) - version 3.0" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=3.0 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (static NW) - version 3.0" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=3.0 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (DHCP) - version 2.8" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=2.8 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (static NW) - version 2.8" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=2.8 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (DHCP) - version 2.7" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=2.7 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (static NW) - version 2.7" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=2.7 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (DHCP) - version 2.6" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=2.6 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (static NW) - version 2.6" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=2.6 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (DHCP) - version 2.5" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=2.5 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (static NW) - version 2.5" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=2.5 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (DHCP) - version 2.4" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=2.4 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerCE (static NW) - version 2.4" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=2.4 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} +source /boot/grub/sipwise_ce.cfg } # Specific sip:providerCE releases ... @@ -222,131 +98,7 @@ menuentry "sip:providerPRO - sp2 / trunk release" { initrd /boot/%SHORT_NAME%/initrd.img } -menuentry "sip:providerPRO - sp1 / pre-release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpautobuildrelease=3.0-rc1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp2 / pre-release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpautobuildrelease=3.0-rc1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp1 / mr3.2.1 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=mr3.2.1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp2 / mr3.2.1 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=mr3.2.1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp1 / 3.1 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=3.1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp2 / 3.1 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=3.1 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp1 / 3.0 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=3.0 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp2 / 3.0 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=3.0 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp1 / 2.8 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=2.8 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp2 / 2.8 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=2.8 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp1 / 2.7 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=2.7 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp2 / 2.7 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=2.7 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp1 / 2.6 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=2.6 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp2 / 2.6 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=2.6 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp1 / 2.5 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=2.5 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp2 / 2.5 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=2.5 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp1 / 2.4 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=2.4 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} - -menuentry "sip:providerPRO - sp2 / 2.4 release" { - echo 'Loading kernel...' - linux /boot/%SHORT_NAME%/vmlinuz live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=2.4 - echo 'Loading initrd...' - initrd /boot/%SHORT_NAME%/initrd.img -} +source /boot/grub/sipwise_pro.cfg } # Specific sip:providerPRO releases diff --git a/templates/boot/isolinux/isolinux.cfg b/templates/boot/isolinux/isolinux.cfg index 91ef96d..e9f4a20 100644 --- a/templates/boot/isolinux/isolinux.cfg +++ b/templates/boot/isolinux/isolinux.cfg @@ -249,221 +249,7 @@ label cenwtrunk in boot command line if necessary. endtext -label cepre - menu label sip:providerCE (DHCP) - pre-release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpautobuildrelease=3.0-rc1 - - text help - Install sip:provider - community edition, pre-release. - Retrieve network configuration - via DHCP. - endtext - -label cenwpre - menu label sip:providerCE (static NW) - pre-release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpautobuildrelease=3.0-rc1 - - text help - Install sip:provider - community edition, pre-release. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label ce3.2.1 - menu label sip:providerCE (DHCP) - version mr3.2.1 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=mr3.2.1 - - text help - Install sip:provider - community edition, version mr3.2.1. - Retrieve network configuration - via DHCP. - endtext - -label cenw3.2.1 - menu label sip:providerCE (static NW) - version mr3.2.1 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=3.2.1 - - text help - Install sip:provider - community edition, version mr3.2.1. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label ce3.1 - menu label sip:providerCE (DHCP) - version 3.1 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=3.1 - - text help - Install sip:provider - community edition, version 3.1. - Retrieve network configuration - via DHCP. - endtext - -label cenw3.1 - menu label sip:providerCE (static NW) - version 3.1 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=3.1 - - text help - Install sip:provider - community edition, version 3.1. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label ce3.0 - menu label sip:providerCE (DHCP) - version 3.0 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=3.0 - - text help - Install sip:provider - community edition, version 3.0. - Retrieve network configuration - via DHCP. - endtext - -label cenw3.0 - menu label sip:providerCE (static NW) - version 3.0 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=3.0 - - text help - Install sip:provider - community edition, version 3.0. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label ce2.8 - menu label sip:providerCE (DHCP) - version 2.8 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=2.8 - - text help - Install sip:provider - community edition, version 2.8. - Retrieve network configuration - via DHCP. - endtext - -label cenw2.8 - menu label sip:providerCE (static NW) - version 2.8 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=2.8 - - text help - Install sip:provider - community edition, version 2.8. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label ce2.7 - menu label sip:providerCE (DHCP) - version 2.7 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=2.7 - - text help - Install sip:provider - community edition, version 2.7. - Retrieve network configuration - via DHCP. - endtext - -label cenw2.7 - menu label sip:providerCE (static NW) - version 2.7 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=2.7 - - text help - Install sip:provider - community edition, version 2.7. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label ce2.6 - menu label sip:providerCE (DHCP) - version 2.6 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=2.6 - - text help - Install sip:provider - community edition, version 2.6. - Retrieve network configuration - via DHCP. - endtext - -label cenw2.6 - menu label sip:providerCE (static NW) - version 2.6 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=2.6 - - text help - Install sip:provider - community edition, version 2.6. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label ce2.5 - menu label sip:providerCE (DHCP) - version 2.5 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=2.5 - - text help - Install sip:provider - community edition, version 2.5. - Retrieve network configuration - via DHCP. - endtext - -label cenw2.5 - menu label sip:providerCE (static NW) - version 2.5 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=2.5 - - text help - Install sip:provider - community edition, version 2.5. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label ce2.4 - menu label sip:providerCE (DHCP) - version 2.4 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ngcpvers=2.4 - - text help - Install sip:provider - community edition, version 2.4. - Retrieve network configuration - via DHCP. - endtext - -label cenw2.4 - menu label sip:providerCE (static NW) - version 2.4 - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcpce ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcphostname=spce ip=192.168.51.123::192.168.51.1:255.255.255.0:spce:eth0:off dns=92.42.136.30 ngcpvers=2.4 - - text help - Install sip:provider - community edition, version 2.4. - Use static IP configuration, adjust - in boot command line if necessary. - endtext +include sipwise_ce.cfg # back to main menu label quit @@ -508,239 +294,7 @@ label prosp2nw-trunk in boot command line if necessary. endtext -label prosp1nw-pre - menu label sip:providerPRO - sp1 / pre-release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpautobuildrelease=3.0-rc1 - - text help - Install sip:provider - professional edition, pre-release. - Install first node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp2nw-pre - menu label sip:providerPRO - sp2 / pre-release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpautobuildrelease=3.0-rc1 - - text help - Install sip:provider - professional edition, pre-release. - Install second node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp1nw-mr3.2.1 - menu label sip:providerPRO - sp1 / mr3.2.1 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=mr3.2.1 - - text help - Install sip:provider - professional edition, version mr3.2.1. - Install first node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp2nw-mr3.2.1 - menu label sip:providerPRO - sp2 / mr3.2.1 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=mr3.2.1 - - text help - Install sip:provider - professional edition, version mr3.2.1. - Install second node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp1nw-3.1 - menu label sip:providerPRO - sp1 / 3.1 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=3.1 - - text help - Install sip:provider - professional edition, version 3.1. - Install first node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp2nw-3.1 - menu label sip:providerPRO - sp2 / 3.1 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=3.1 - - text help - Install sip:provider - professional edition, version 3.1. - Install second node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp1nw-3.0 - menu label sip:providerPRO - sp1 / 3.0 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=3.0 - - text help - Install sip:provider - professional edition, version 3.0. - Install first node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp2nw-3.0 - menu label sip:providerPRO - sp2 / 3.0 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=wheezy netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=3.0 - - text help - Install sip:provider - professional edition, version 3.0. - Install second node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp1nw-2.8 - menu label sip:providerPRO - sp1 / 2.8 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=2.8 - - text help - Install sip:provider - professional edition, version 2.8. - Install first node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp2nw-2.8 - menu label sip:providerPRO - sp2 / 2.8 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=2.8 - - text help - Install sip:provider - professional edition, version 2.8. - Install second node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp1nw-2.7 - menu label sip:providerPRO - sp1 / 2.7 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=2.7 - - text help - Install sip:provider - professional edition, version 2.7. - Install first node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp2nw-2.7 - menu label sip:providerPRO - sp2 / 2.7 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=2.7 - - text help - Install sip:provider - professional edition, version 2.7. - Install second node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp1nw-2.6 - menu label sip:providerPRO - sp1 / 2.6 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=2.6 - - text help - Install sip:provider - professional edition, version 2.6. - Install first node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp2nw-2.6 - menu label sip:providerPRO - sp2 / 2.6 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=2.6 - - text help - Install sip:provider - professional edition, version 2.6. - Install second node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp1nw-2.5 - menu label sip:providerPRO - sp1 / 2.5 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=2.5 - - text help - Install sip:provider - professional edition, version 2.5. - Install first node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp2nw-2.5 - menu label sip:providerPRO - sp2 / 2.5 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=2.5 - - text help - Install sip:provider - professional edition, version 2.5. - Install second node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp1nw-2.4 - menu label sip:providerPRO - sp1 / 2.4 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp1 ip=192.168.1.101::192.168.1.1:255.255.255.0:sp1:eth0:off dns=92.42.136.30 ngcpvers=2.4 - - text help - Install sip:provider - professional edition, version 2.4. - Install first node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext - -label prosp2nw-2.4 - menu label sip:providerPRO - sp2 / 2.4 release - kernel /boot/%SHORT_NAME%/vmlinuz - append initrd=/boot/%SHORT_NAME%/initrd.img live-media-path=/live/%GRML_NAME%/ boot=live bootid=%BOOTID% apm=power-off vga=791 quiet nomce ngcppro ssh=sipwise debianrelease=squeeze netscript=http://deb.sipwise.com/kantan/deployment.sh ngcpsp2 ip=192.168.1.102::192.168.1.1:255.255.255.0:sp2:eth0:off dns=92.42.136.30 ngcpvers=2.4 - - text help - Install sip:provider - professional edition, version 2.4. - Install second node of HA setup. - Use static IP configuration, adjust - in boot command line if necessary. - endtext +include sipwise_pro.cfg # back to main menu label quit