/[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 236 by dpavlin, Sun Aug 16 23:45:29 2009 UTC revision 268 by dpavlin, Wed Aug 19 17:01:57 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 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    
106            if ( ! -e $nfsroot ) {
107                    system "apt-get install nfs-kernel-server debootstrap";
108            
109                    if ( ! -e $nfsroot ) {
110                            mkdir $nfsroot;
111                            system "debootstrap --arch i386 lenny $nfsroot http://ftp.hr.debian.org/debian";
112                    }
113    
114                    write_file "$nfsroot/tmp/configure.sh", qq{
115    echo "do_initrd = Yes" > /etc/kernel-img.conf
116    
117    # apt-get install kernel-image-686
118    apt-get install atl2-modules-2.6-686
119    echo atl2 >> /etc/initramfs-tools/modules
120    
121    cat /etc/initramfs-tools/initramfs.conf | sed 's/BOOT=local/BOOT=nfs/' > /tmp/initramfs.conf \
122            && mv /tmp/initramfs.conf /etc/initramfs-tools/initramfs.conf
123    
124    update-initramfs -u -v
125    
126    };
127    
128                    system "chroot $nfsroot /tmp/configure.sh";
129    
130                    open(my $exports, '>>', '/etc/exports');
131                    print $exports "$nfsroot\t$server::ip/$server::netmask(rw,async,no_root_squash,no_subtree_check)\n";
132                    close($exports);
133    
134                    system "exportfs -rva";
135    
136            }
137    
138            pxelinux::config_for_ip( $ip, qq{
139    
140    default nfsroot
141    label nfsroot
142            kernel vmlinuz
143            append initrd=initrd.img root=/dev/nfs nfsroot=$server::ip:$nfsroot ro ip=dhcp
144    
145            });
146    }
147    
148  sub for_ip {  sub for_ip {
149          my $ip = shift;          my $ip = shift;

Legend:
Removed from v.236  
changed lines
  Added in v.268

  ViewVC Help
Powered by ViewVC 1.1.26