/[pxelator]/lib/PXElator/config.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/PXElator/config.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 234 by dpavlin, Sun Aug 16 23:32:21 2009 UTC revision 270 by dpavlin, Wed Aug 19 18:10:37 2009 UTC
# Line 9  use pxelinux; Line 9  use pxelinux;
9  use client;  use client;
10  use File::Slurp;  use File::Slurp;
11    
12  sub available { qw/debian_live webconverger debirf tinycore/ };  sub available { qw/debian_live webconverger debirf tinycore nfsroot/ };
13    
14  sub debian_live {  sub debian_live {
15          my ($ip) = @_;          my ($ip) = @_;
# Line 28  sub debian_live { Line 28  sub debian_live {
28  default debian_live  default debian_live
29  label debian_live  label debian_live
30          kernel vmlinuz1          kernel vmlinuz1
31          append initrd=initrd1.img fetch=http://${server::ip}:7777/debian-live/debian-live-501-i386-standard.squashfs boot=live nopersistent hostname=$hostname union=aufs          append initrd=initrd1.img fetch=http://${server::ip}:7777/debian_live/debian-live-501-i386-standard.squashfs boot=live nopersistent hostname=$hostname union=aufs
32          });          });
33    
34  }  }
# Line 97  label linux Line 97  label linux
97    
98          });          });
99  }  }
100    
101    sub nfsroot {
102            my $ip = shift;
103    
104            my $nfsroot = "$server::base_dir/tftp/nfsroot";
105            my $debian_mirror = server::conf_default( 'debian_mirror', 'http://ftp.debian.org/debian' );
106    
107            if ( ! -e $nfsroot ) {
108                    system "apt-get install nfs-kernel-server debootstrap";
109    
110                    if ( ! -e $nfsroot ) {
111                            mkdir $nfsroot;
112                            system "debootstrap --arch i386 lenny $nfsroot http://ftp.hr.debian.org/debian";
113                    }
114    
115                    write_file "$nfsroot/tmp/configure.sh", qq{
116    echo "do_initrd = Yes" > /etc/kernel-img.conf
117    
118    # apt-get install kernel-image-686
119    apt-get install atl2-modules-2.6-686
120    echo atl2 >> /etc/initramfs-tools/modules
121    
122    cat /etc/initramfs-tools/initramfs.conf | sed 's/BOOT=local/BOOT=nfs/' > /tmp/initramfs.conf \
123            && mv /tmp/initramfs.conf /etc/initramfs-tools/initramfs.conf
124    
125    update-initramfs -u -v
126    
127    };
128    
129                    system "chroot $nfsroot sh -x /tmp/configure.sh";
130    
131                    open(my $exports, '>>', '/etc/exports');
132                    print $exports "$nfsroot\t$server::ip/$server::netmask(rw,async,no_root_squash,no_subtree_check)\n";
133                    close($exports);
134    
135                    system "exportfs -rva";
136    
137            }
138    
139            pxelinux::config_for_ip( $ip, qq{
140    
141    default nfsroot
142    label nfsroot
143            kernel vmlinuz
144            append initrd=initrd.img root=/dev/nfs nfsroot=$server::ip:$nfsroot ro ip=dhcp
145    
146            });
147    }
148    
149  sub for_ip {  sub for_ip {
150          my $ip = shift;          my $ip = shift;

Legend:
Removed from v.234  
changed lines
  Added in v.270

  ViewVC Help
Powered by ViewVC 1.1.26