| 1 | #!/usr/bin/perl -w |
|---|
| 2 | |
|---|
| 3 | # Script to be used as pbscript to create a potentialy |
|---|
| 4 | # missing pb account on the QEMU VM, and adds it to sudo |
|---|
| 5 | |
|---|
| 6 | # Needs to be extented with the pb Distribution.pm module at the end externally |
|---|
| 7 | # |
|---|
| 8 | # Needs to use root account to connect to the VM |
|---|
| 9 | |
|---|
| 10 | # You need to specify here your local public SSH key used to access |
|---|
| 11 | # the pb account in the VM later on |
|---|
| 12 | |
|---|
| 13 | use strict; |
|---|
| 14 | use File::Basename; |
|---|
| 15 | |
|---|
| 16 | my $file = "/tmp/pbkey"; |
|---|
| 17 | |
|---|
| 18 | open(PBFILE,"> $file") || die "Unable to open $file"; |
|---|
| 19 | print PBFILE "ssh-dss AAAAB3NzaC1kc3MAAACBAMC06bNLMu8ZBJv3Hi77+fi+GUhtQScIbGKru86C/IP27EjrmYhPVccbu8kpX6SDHIouhpZ00gaefP3zHjLUmPKlXkMNUNjxx5JNLPoHhSIuUvoSTNoh9gsi31abAvzbW+RNer7rvBJO4ytNJRdsuNxBwqjxK04JEmatds+aKTQjAAAAFQDHaNmIuvYZ0RtNBVe+tzTzxxCQmQAAAIA4o89Xob2VBRtQKBjmWVAuTS14qiqnQUPNloaRkM+r2odI+NJDFc+WXOIG9QAPKKt1jvFOBOX9Mu3/xwiDLnAGhxud98FoyHevSpIWUld7rG4j1aww1WxolFWY/iPyAvDDMW3iysCoqQeSOlpRd9Mz/dq6/P/VcizhdGOKyc3JBgAAAIAA1eY+BoneiQ/tQ8j3GYbMTu6U7VzZ2OaoVeQn4NtZmPl+ZeQIj83nFpo99mYCbaBPqnZToERndl+ljp/JX5pamwj6RcLIDCyiB6MXLbQSWj0goegU1htp5aMd3NcyR2Jy8gCnf0QjDr7j23Q+CFGExtRb/nsDmaG5W9D6QSWQ/g== bruno\@victoria\n"; |
|---|
| 20 | close(PBFILE); |
|---|
| 21 | chmod 0644,$file; |
|---|
| 22 | |
|---|
| 23 | # Sync date |
|---|
| 24 | system "/usr/sbin/ntpdate ntp.home.musique-ancienne.org"; |
|---|
| 25 | |
|---|
| 26 | $file="/etc/passwd"; |
|---|
| 27 | open(PBFILE,$file) || die "Unable to open $file"; |
|---|
| 28 | my $found = 0; |
|---|
| 29 | while (<PBFILE>) { |
|---|
| 30 | $found = 1 if (/^pb:/); |
|---|
| 31 | } |
|---|
| 32 | close(PBFILE); |
|---|
| 33 | |
|---|
| 34 | if ( $found == 0 ) { |
|---|
| 35 | if ( ! -d "/home" ) { |
|---|
| 36 | mkdir "/home"; |
|---|
| 37 | } |
|---|
| 38 | system "useradd pb"; |
|---|
| 39 | } |
|---|
| 40 | |
|---|
| 41 | # No passwd for pb only keys |
|---|
| 42 | $file="/etc/shadow"; |
|---|
| 43 | open(PBFILE,$file) || die "Unable to open $file"; |
|---|
| 44 | open(PBOUT,"> $file.new") || die "Unable to open $file.new"; |
|---|
| 45 | while (<PBFILE>) { |
|---|
| 46 | s/^pb:\!\!:/pb:*:/; |
|---|
| 47 | print PBOUT $_; |
|---|
| 48 | } |
|---|
| 49 | close(PBFILE); |
|---|
| 50 | close(PBOUT); |
|---|
| 51 | rename("$file.new",$file); |
|---|
| 52 | chmod 0640,$file; |
|---|
| 53 | |
|---|
| 54 | # Adapt sudoers |
|---|
| 55 | $file="/etc/sudoers"; |
|---|
| 56 | $found = 0; |
|---|
| 57 | open(PBFILE,$file) || die "Unable to open $file"; |
|---|
| 58 | open(PBOUT,"> $file.new") || die "Unable to open $file.new"; |
|---|
| 59 | while (<PBFILE>) { |
|---|
| 60 | $found = 1 if (/^pb /); |
|---|
| 61 | s/Defaults[ \t]+requiretty//; |
|---|
| 62 | print PBOUT $_; |
|---|
| 63 | } |
|---|
| 64 | close(PBFILE); |
|---|
| 65 | print PBFILE "pb ALL=(ALL) NOPASSWD:ALL\n" if ( $found == 0 ); |
|---|
| 66 | close(PBOUT); |
|---|
| 67 | rename("$file.new",$file); |
|---|
| 68 | chmod 0440,$file; |
|---|
| 69 | |
|---|
| 70 | system 'su - pb -c "mkdir -p .ssh ; chmod 700 .ssh ; cp /tmp/pbkey .ssh/authorized_keys ; chmod 600 .ssh/authorized_keys"'; |
|---|
| 71 | unlink "/tmp/pbkey"; |
|---|
| 72 | |
|---|
| 73 | my ($ddir, $dver, $dfam, $dtype, $pbsuf) = pb_distro_init(); |
|---|
| 74 | |
|---|
| 75 | # Get and install pb |
|---|
| 76 | if ( $ddir eq "fedora" ) { |
|---|
| 77 | system "yum clean all"; |
|---|
| 78 | if ( $dver <= 4 ) { |
|---|
| 79 | # FC4 |
|---|
| 80 | system "yum -y install neon newt-devel slang-devel autoconf automake libtool gcc rpm-build wget gcc-c++ docbook-utils-pdf ImageMagick man patch cdrecord mkisofs perl-DateManip ntp ; rm -rf AppConfig-* ; wget http://search.cpan.org/CPAN/authors/id/A/AB/ABW/AppConfig-1.66.tar.gz ; tar xvfz AppConfig-1.66.tar.gz ; cd AppConfig* ; perl Makefile.PL ; make ; make install ; cd .."; |
|---|
| 81 | } else { |
|---|
| 82 | # FC5/6/7 |
|---|
| 83 | system "yum -y install neon newt-devel slang-devel autoconf automake libtool gcc rpm-build wget gcc-c++ docbook-utils-pdf ImageMagick man patch cdrecord mkisofs ntp perl-AppConfig perl-DateManip"; |
|---|
| 84 | } |
|---|
| 85 | } elsif ( $dfam eq "md" ) { |
|---|
| 86 | system "urpmi --auto-select neon newt-devel slang-devel glibc-static-devel autoconf automake libtool gcc rpm-build wget gcc-c++ docbook-utils-pdf ImageMagick man patch mindi mondo mkisofs cdrecord ntp-client perl-AppConfig perl-DateManip"; |
|---|
| 87 | } elsif ( $dfam eq "du" ) { |
|---|
| 88 | system "apt-get install autoconf automake libtool g++ wget patch mondo groff imagemagick docbook-utils docbook2x docbook-to-man openssh-server dpkg-dev debian-builder dh-make fakeroot libnewt-dev ntp-client libncurses5-dev"; |
|---|
| 89 | } elsif ( $dfam eq "gen" ) { |
|---|
| 90 | system "emerge neon newt slang autoconf automake subversion libtool gcc wget vim man groff lynx grub afio buffer mindi mondo-rescue cdrecord mkisofs ntp-client"; |
|---|
| 91 | } else { |
|---|
| 92 | print "No pkg to install\n"; |
|---|
| 93 | } |
|---|
| 94 | |
|---|
| 95 | # Patch AppConfig |
|---|
| 96 | my $module=`find /usr/lib/perl5 -type f -name File.pm | grep AppConfig/File.pm`; |
|---|
| 97 | chomp($module); |
|---|
| 98 | $found = 0; |
|---|
| 99 | open(PBFILE,$module) || die "Unable to open $module"; |
|---|
| 100 | while (<PBFILE>) { |
|---|
| 101 | $found = 1 if (/Fix a bug if the variable is a hash/); |
|---|
| 102 | } |
|---|
| 103 | close(PBFILE); |
|---|
| 104 | |
|---|
| 105 | if ( $found == 0 ) { |
|---|
| 106 | chdir basename($module); |
|---|
| 107 | open(PBFILE,$module) || die "Unable to open $module"; |
|---|
| 108 | my $module1 = $module."new"; |
|---|
| 109 | open(PBOUT," > $module1") || die "Unable to open $module1"; |
|---|
| 110 | while (<PBFILE>) { |
|---|
| 111 | s/^use AppConfig;/use AppConfig qw(:argcount);/; |
|---|
| 112 | if (/# variables prefixed '-' are reset to their default values/) { |
|---|
| 113 | print PBOUT << 'EOF'; |
|---|
| 114 | # Fix a bug if the variable is a hash - 1 has been created as a key |
|---|
| 115 | if ($nargs eq AppConfig::ARGCOUNT_HASH) { |
|---|
| 116 | delete $state->{ VARIABLE }->{ $variable }{1}; |
|---|
| 117 | } |
|---|
| 118 | |
|---|
| 119 | EOF |
|---|
| 120 | } |
|---|
| 121 | print PBOUT "$_"; |
|---|
| 122 | } |
|---|
| 123 | close(PBFILE); |
|---|
| 124 | close(PBOUT); |
|---|
| 125 | rename($module1,$module); |
|---|
| 126 | } |
|---|
| 127 | |
|---|
| 128 | system "rm -rf project-builder-* ; wget ftp://ftp.mondorescue.org/src/project-builder-latest.tar.gz ; tar xvfz project-builder-latest.tar.gz ; cd project-builder-* ; perl Makefile.PL ; make ; make install ; cd .."; |
|---|
| 129 | |
|---|