/usr/sbin/ldap2repository is in goto-fai-backend 3.0-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 | #!/usr/bin/perl
# $Id$
#*********************************************************************
#
# (c) 2005,2006 Jan-Marek Glogowski <glogow@fbihome.de>
# (c) 2007,2009 The GOsa project <gosa-devel@oss.gonicus.de>
#*********************************************************************
=head1 NAME
ldap2repository - creating debian repositories cronjob for the GOsa FAI plugin.
=head1 SYNOPSIS
ldap2repository [-hvnpej] [-c config] [-d outdir] [-r srvroot] [-i interface] [-a arch] [-P proxy]
=head1 DESCRIPTION
ldap2repository is a script to create the cronjob for the local.
debian repositories needed by GOsa FAI plugin.
=over 12
=item B<-c> LDAP config file (default: /etc/ldap/ldap.conf)
=item B<-d> output dir (default: /etc/gosa/fai)
=item B<-h> display this help and exit
=item B<-n> skip cleanup for mirrors
=item B<-p> show progress in cronjob
=item B<-v> be verbose
=item B<-i> network interface (default: eth0)
=item B<-j> create a new /etc/cron.d/goto-fai-backend
=item B<-r> server root (default: /srv/www)
=item B<-e> ignore small errors
=item B<-a> processor architecture (default: i386)
=item B<-P> proxy (default: none)
=back
=head1 BUGS
Please report any bugs, or post any suggestions, to the GOsa mailing list <gosa-devel@oss.gonicus.de> or to <https://oss.gonicus.de/labs/gosa>
=head1 LICENCE AND COPYRIGHT
This code is part of GOsa (L<http://www.gosa-project.org>)
Copyright (C) 2005-2006 Jan-Marek Glogowski <glogow@fbihome.de>
2007-2010 The GOsa project <gosa-devel@oss.gonicus.de>
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
=cut
use strict;
use lib "/usr/lib/goto";
use Switch;
use Net::LDAP;
use MIME::Base64;
use Getopt::Std;
use File::Path;
use File::Copy;
use GOto::Common qw(:ldap :file :array);
use vars qw/ %opt /;
my $base;
my $ldapuris;
my $ldapdir = "/etc/ldap/ldap.conf";
my $outdir = "/etc/gosa/fai";
my $crond_dir= "/etc/cron.d";
my $interface = "eth0";
my $verbose = 0;
my $newcrond = 0;
my $opt_string = 'c:d:i:hnpeja:P:r:v';
my $hostname;
my $srvdir = "/srv/www";
my $progress = "";
my $nocleanup = "";
my $small_errors = "";
my $arch = "i386";
my $proxy = "";
getopts( "$opt_string", \%opt ) or usage("Wrong parameters");
usage("ldap2repository - creating debian repositories cronjob for the GOsa FAI plugin.") if $opt{h};
$verbose = $opt{v} ? 1 : 0;
$newcrond = $opt{j} ? 1 : 0;
$outdir = $opt{d} ? $opt{d} : $outdir;
$ldapdir = $opt{c} ? $opt{c} : $ldapdir;
$interface = $opt{i} ? $opt{i} : $interface;
$nocleanup = $opt{n} ? "--nocleanup" : "";
$srvdir = $opt{r} ? $opt{r} : $srvdir;
$progress = $opt{p} ? "--progress" : "";
$arch = $opt{a} ? $opt{a} : $arch;
$small_errors = $opt{e} ? "--ignore-small-errors" : "";
$proxy = $opt{P} ? "--proxy=".$opt{P} : "";
# initialize ldap
( $base, $ldapuris ) = goto_ldap_parse_config( $ldapdir );
usage( "Couldn't find LDAP base in config!" ) if( ! defined $base );
usage( "Couldn't find LDAP URI in config!" ) if( ! defined $ldapuris );
my $ldap = Net::LDAP->new( $ldapuris ) or die "$@";
my $mesg = $ldap->bind;
my $mac = `LANG=C /sbin/ifconfig $interface | awk '/$interface/{ print \$5 }'`;
chomp( $mac );
# create class hooks debconf disk_config package_config scripts files
-d "$outdir"
or mkpath "$outdir"
or warn "WARNING: Can't create subdir $outdir: $!\n";
# Is outdir a directory
-d "$outdir" || usage("'$outdir' is not a directory.\n");
generate_sources_list();
$mesg = $ldap->unbind; # take down session
exit 0;
sub usage
{
(@_) && print STDERR "\n@_\n\n";
print STDERR << "EOF";
usage: $0 [-hvnpej] [-c config] [-d outdir] [-r srvroot] [-i interface] [-a arch] [-P proxy]
-h : this (help) message
-c : LDAP config file (default: ${ldapdir})
-d : output dir (default: ${outdir})
-i : network interface (default: ${interface})
-j : create a new cron.d/goto-fai-backend
-n : skip cleanup for mirrors
-p : show progress in cronjob
-r : server root (default ${srvdir})
-v : be verbose on generate
-P : proxy (default: ${proxy})
-e : ignore small errors
-a : processor architecture (default: ${arch})
EOF
exit -1;
}
sub search_repo_server {
my ($cn) = @_;
my @attrs = ( 'FAIrepository' );
my ($sresult) = goto_ldap_rsearch( $ldap, $base, '',
"(&(objectClass=FAIrepositoryServer)(cn=${cn}))",
"one", "ou=servers,ou=systems", \@attrs );
return goto_ldap_is_single_result( $sresult, 1 );
}
sub generate_sources_list {
my ($mesg,$entry,$par_mesg,$par_entry,@entries);
my ($line,@deblines,@modsections,@rdns,%saw,$debline);
my $hostname = `hostname -f`;
$hostname = $1 if ( $hostname =~ m/([a-z0-9\.\-]+).*/g );
if( $verbose ) {
print "Generating sources.list and debmirror cronjob for server\n"
. "Host: ${hostname}\n"
. "Base: ${base}\n"
. "Outdir: ${outdir}\n\n";
}
open (SOURCES,">${outdir}/sources.list")
|| die "Can't create ${outdir}/sources.list: $!\n";
open (CRON, ">${outdir}/update-cronjob")
|| die "Can't create ${outdir}/update-cronjob: $!\n";
# generate new /etc/cron.d/goto-fai-backend if asked
# this option allows to add option neccessary
# to the got-fai-backend cron
if( $newcrond ) {
open (CROND, ">${crond_dir}/goto-fai-backend")
|| die "Can't create ${crond_dir}/goto-fai-backend: $!\n";
print CROND "PATH=/sbin:/bin:/usr/sbin:/usr/bin\n\n";
print CROND "\@reboot root ldap2repository -n -p -e -i $interface -a $arch $proxy; [ -f /etc/gosa/fai/update-cronjob ] && sh /etc/gosa/fai/update-cronjob\n";
print CROND "\@daily root ldap2repository -n -p -e -i $interface -a $arch $proxy; [ -f /etc/gosa/fai/update-cronjob ] && sh /etc/gosa/fai/update-cronjob\n";
close (CROND);
}
# Write cron script
print CRON "#!/bin/sh\n";
$mesg = $ldap->search(
base => "$base",
filter => "(&(objectClass=FAIrepositoryServer)(macAddress=${mac}))",
attrs => [ 'FAIrepository', 'cn' ] );
$mesg->code && die $mesg->error;
@entries = $mesg->entries;
die "Server object doesn't contain repositories\n" if( 0 == scalar @entries );
$entry = $entries[0];
my ($newbase) = $entry->dn() =~ m/.*ou=systems,(.*)/;
if( "$base" ne "$newbase" ) {
print( "Switching base: $newbase\n" ) if( $verbose );
$base = $newbase;
}
foreach my $repoline ($entry->get_value('FAIrepository')){
my (@items) = split('\|',${repoline});
my $uri = $items[0];
my ($dir) = $uri =~ m%.*://[^/]+/(.*)%;
my ($localuri) = $uri =~ s%://[^/]+%://localhost%;
my $parent_or_opts = $items[1];
my $dist = $items[2];
my $sections = $items[3];
my (@section_list) = split(',',$items[3]);
print SOURCES "deb $uri $dist @section_list\n";
print " +S $dist ($sections) via $uri\n" if( $verbose );
if ("" eq "$parent_or_opts") {
print( "No parent for '$repoline'\n" );
next;
}
if (":" eq substr($parent_or_opts,0,1)) {
# No GOsa internal mirror or too complicated: write as additional options
print CRON "debmirror --ignore-release-gpg --nosource ${small_errors} -a ${arch} --dist=${dist} --sections=${sections} $proxy "
. substr($parent_or_opts,1) . "${proxy} ${srvdir}/${dist}\n";
print " +Cc ${dist} (${sections})\n" if( $verbose );
}
else {
# Check repository release
my (@rdns,$search_base);
@rdns = split(',',$base);
$par_entry = search_repo_server( "${parent_or_opts}" );
if( 0 == $par_entry ) {
print( "Couldn't find parent repo server for '$repoline'\n" );
next;
}
foreach my $par_repoline ($par_entry->get_value('FAIrepository')){
my (@par_items) = split('\|',${par_repoline});
my ($method,$host,$root);
if ($par_items[0] =~ m#([^:]+)://([^/]+)(.*)#) {
$method = $1;
$host = $2;
$root = $3;
}
my $par_dist = $par_items[2];
my @outline = ();
if ("$dist" eq "$par_dist") {
my (@par_section_list) = split(',', $items[3]);
foreach my $section (@par_section_list) {
if (goto_array_find_and_remove( \@section_list, ${section})) {
push( @outline, $section );
last if (0 == scalar @section_list);
}
}
if (0 != scalar @{outline}) {
print CRON "\ndebmirror ${progress} ${nocleanup} --ignore-release-gpg --nosource ${small_errors} -a ${arch} --dist=${dist} --section=" . join(",", @{outline})
. " --method=${method} --host=${host} --root=${root} $proxy ${srvdir}/${dir}\n";
print " +Cs ${dist} (" . join(",", @{outline}) . ") from ${host}\n" if( $verbose );
}
last if (0 == scalar @section_list);
}
}
}
}
close (SOURCES);
close (CRON);
}
# vim:ts=2:sw=2:expandtab:shiftwidth=2:syntax:paste
|