From 5e3e23551689398efeee1693949aed4efa88c675 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Wed, 19 Aug 2009 17:01:57 +0000 Subject: [PATCH] semi-working nfsroot configuration --- lib/PXElator/config.pm | 49 ++++++++++++++++++++++++++++++++++++++++- lib/PXElator/t/config.t | 4 ++-- 2 files changed, 50 insertions(+), 3 deletions(-) diff --git a/lib/PXElator/config.pm b/lib/PXElator/config.pm index 1183954..0baab18 100644 --- a/lib/PXElator/config.pm +++ b/lib/PXElator/config.pm @@ -9,7 +9,7 @@ use pxelinux; use client; use File::Slurp; -sub available { qw/debian_live webconverger debirf tinycore/ }; +sub available { qw/debian_live webconverger debirf tinycore nfsroot/ }; sub debian_live { my ($ip) = @_; @@ -98,6 +98,53 @@ label linux }); } +sub nfsroot { + my $ip = shift; + + my $nfsroot = "$server::base_dir/tftp/nfsroot"; + + if ( ! -e $nfsroot ) { + system "apt-get install nfs-kernel-server debootstrap"; + + if ( ! -e $nfsroot ) { + mkdir $nfsroot; + system "debootstrap --arch i386 lenny $nfsroot http://ftp.hr.debian.org/debian"; + } + + write_file "$nfsroot/tmp/configure.sh", qq{ +echo "do_initrd = Yes" > /etc/kernel-img.conf + +# apt-get install kernel-image-686 +apt-get install atl2-modules-2.6-686 +echo atl2 >> /etc/initramfs-tools/modules + +cat /etc/initramfs-tools/initramfs.conf | sed 's/BOOT=local/BOOT=nfs/' > /tmp/initramfs.conf \ + && mv /tmp/initramfs.conf /etc/initramfs-tools/initramfs.conf + +update-initramfs -u -v + +}; + + system "chroot $nfsroot /tmp/configure.sh"; + + open(my $exports, '>>', '/etc/exports'); + print $exports "$nfsroot\t$server::ip/$server::netmask(rw,async,no_root_squash,no_subtree_check)\n"; + close($exports); + + system "exportfs -rva"; + + } + + pxelinux::config_for_ip( $ip, qq{ + +default nfsroot +label nfsroot + kernel vmlinuz + append initrd=initrd.img root=/dev/nfs nfsroot=$server::ip:$nfsroot ro ip=dhcp + + }); +} + sub for_ip { my $ip = shift; my $deploy = client::conf( $ip => 'deploy', default => 'webconverger' ); diff --git a/lib/PXElator/t/config.t b/lib/PXElator/t/config.t index 111f5e5..e6ca2fb 100755 --- a/lib/PXElator/t/config.t +++ b/lib/PXElator/t/config.t @@ -4,7 +4,7 @@ use warnings; use strict; use autodie; -use Test::More tests => 3; +use Test::More tests => 4; use Data::Dump qw/dump/; use_ok 'config'; @@ -18,7 +18,7 @@ sub test { return $config; } -foreach my $name ( 'webconverger', 'debian_live' ) { +foreach my $name ( 'webconverger', 'debian_live', 'nfsroot' ) { ok( my $config = test($name), $name ); diag "config", $config; } -- 2.20.1