From 97f53573a54d12f42379097b1edc7dca08b67dfb Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Mon, 25 Feb 2008 14:26:07 +0000 Subject: [PATCH] Remove interim mknb script git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@560 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server-2.0/sbin/mknb | 57 --------------------------------------- 1 file changed, 57 deletions(-) delete mode 100755 xCAT-server-2.0/sbin/mknb diff --git a/xCAT-server-2.0/sbin/mknb b/xCAT-server-2.0/sbin/mknb deleted file mode 100755 index ebeb2f05c..000000000 --- a/xCAT-server-2.0/sbin/mknb +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/sh -# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html -if [ $# -ne 1 ]; then - echo "Usage: mknb " - exit 1 -fi -if [ ! -d /opt/xcat/share/xcat/netboot/$1 ]; then - echo "Unsupported architecture: $1" - exit 1 -fi -if [ ! -r ~/.ssh/id_rsa.pub ]; then - #echo "Need to generate ssh keys" - ssh-keygen -t rsa -q -b 2048 -N "" -f ~/.ssh/id_rsa - #exit 1 -fi -mkdir -p /tmp/mknb.$$ -cp -a /opt/xcat/share/xcat/netboot/$1/nbroot/* /tmp/mknb.$$/ -mkdir -p /tmp/mknb.$$/root/.ssh -cp ~/.ssh/id_rsa.pub /tmp/mknb.$$/root/.ssh/authorized_keys -if [ -f /install/postscripts/hostkeys/ssh_host_key ]; then - cp /install/postscripts/hostkeys/ssh_host_key /tmp/mknb.$$/etc/ssh_host_key - cp /install/postscripts/hostkeys/ssh_host_rsa_key /tmp/mknb.$$/etc/ssh_host_rsa_key - cp /install/postscripts/hostkeys/ssh_host_dsa_key /tmp/mknb.$$/etc/ssh_host_dsa_key -fi -if [ ! -f /tmp/mknb.$$/etc/ssh_host_key ]; then - echo Generating SSH1 RSA Key... - /usr/bin/ssh-keygen -t rsa1 -f /tmp/mknb.$$/etc/ssh_host_key -C '' -N '' - echo Generating SSH2 RSA Key... - /usr/bin/ssh-keygen -t rsa -f /tmp/mknb.$$/etc/ssh_host_rsa_key -C '' -N '' - echo Generating SSH2 DSA Key... - /usr/bin/ssh-keygen -t dsa -f /tmp/mknb.$$/etc/ssh_host_dsa_key -C '' -N '' -fi -cd /tmp/mknb.$$ -echo "Packing nbfs.$1.gz" -find . | cpio -o -H newc | gzip -9 > /tftpboot/xcat/nbfs.$1.gz -cd - -rm -rf /tmp/mknb.$$ -if [ "$1" = "x86_64" -a ! -f /tftpboot/pxelinux.0 -a -f /usr/lib/syslinux/pxelinux.0 ]; then - cp /usr/lib/syslinux/pxelinux.0 /tftpboot/pxelinux.0 -fi -if [ "$1" = "x86_64" -a ! -f /tftpboot/pxelinux.cfg/default ]; then - mkdir -p /tftpboot/pxelinux.cfg - echo "default xCAT - LABEL xCAT - KERNEL xcat/nbk.x86_64 - APPEND initrd=xcat/nbfs.x86_64.gz xcatd="`gettab key=master site.value|awk -F: '{print $2}'`:`gettab key=xcatdport site.value|awk -F: '{print $2}'` > /tftpboot/pxelinux.cfg/default -fi -if [ "$1" = "ppc64" -a ! -f /tftpboot/etc/yaboot.conf ]; then - mkdir -p /tftpboot/etc - echo "timeout=5 - label=xcat - image=xcat/nbk.ppc64 - initrd=xcat/nbfs.ppc64.gz - append=\"xcatd="`gettab key=master site.value|awk -F: '{print $2}'`:`gettab key=xcatdport site.value|awk -F: '{print $2}'`\"> /tftpboot/etc/yaboot.conf -fi - -