]> git.donarmstrong.com Git - debhelper.git/blob - Debian/Debhelper/Dh_Lib.pm
Ignore unknown options in DH_OPTIONS. Debhelper will always ignore such options,...
[debhelper.git] / Debian / Debhelper / Dh_Lib.pm
1 #!/usr/bin/perl -w
2 #
3 # Library functions for debhelper programs, perl version.
4 #
5 # Joey Hess, GPL copyright 1997-2008.
6
7 package Debian::Debhelper::Dh_Lib;
8 use strict;
9
10 use Exporter;
11 use vars qw(@ISA @EXPORT %dh);
12 @ISA=qw(Exporter);
13 @EXPORT=qw(&init &doit &complex_doit &verbose_print &error &warning &tmpdir
14             &pkgfile &pkgext &pkgfilename &isnative &autoscript &filearray
15             &filedoublearray &getpackages &basename &dirname &xargs %dh
16             &compat &addsubstvar &delsubstvar &excludefile &package_arch
17             &is_udeb &udeb_filename &debhelper_script_subst &escape_shell
18             &inhibit_log);
19
20 my $max_compat=7;
21
22 sub init {
23         my %params=@_;
24
25         # Check to see if an option line starts with a dash,
26         # or DH_OPTIONS is set.
27         # If so, we need to pass this off to the resource intensive 
28         # Getopt::Long, which I'd prefer to avoid loading at all if possible.
29         if ((defined $ENV{DH_OPTIONS} && length $ENV{DH_OPTIONS}) ||
30             grep /^-/, @ARGV) {
31                 eval "use Debian::Debhelper::Dh_Getopt";
32                 error($@) if $@;
33                 Debian::Debhelper::Dh_Getopt::parseopts($params{options});
34         }
35
36         # Another way to set excludes.
37         if (exists $ENV{DH_ALWAYS_EXCLUDE} && length $ENV{DH_ALWAYS_EXCLUDE}) {
38                 push @{$dh{EXCLUDE}}, split(":", $ENV{DH_ALWAYS_EXCLUDE});
39         }
40         
41         # Generate EXCLUDE_FIND.
42         if ($dh{EXCLUDE}) {
43                 $dh{EXCLUDE_FIND}='';
44                 foreach (@{$dh{EXCLUDE}}) {
45                         my $x=$_;
46                         $x=escape_shell($x);
47                         $x=~s/\./\\\\./g;
48                         $dh{EXCLUDE_FIND}.="-regex .\\*$x.\\* -or ";
49                 }
50                 $dh{EXCLUDE_FIND}=~s/ -or $//;
51         }
52         
53         # Check to see if DH_VERBOSE environment variable was set, if so,
54         # make sure verbose is on.
55         if (defined $ENV{DH_VERBOSE} && $ENV{DH_VERBOSE} ne "") {
56                 $dh{VERBOSE}=1;
57         }
58
59         # Check to see if DH_NO_ACT environment variable was set, if so, 
60         # make sure no act mode is on.
61         if (defined $ENV{DH_NO_ACT} && $ENV{DH_NO_ACT} ne "") {
62                 $dh{NO_ACT}=1;
63         }
64
65         my @allpackages=getpackages();
66         # Get the name of the main binary package (first one listed in
67         # debian/control). Only if the main package was not set on the
68         # command line.
69         if (! exists $dh{MAINPACKAGE} || ! defined $dh{MAINPACKAGE}) {
70                 $dh{MAINPACKAGE}=$allpackages[0];
71         }
72
73         # Check if packages to build have been specified, if not, fall back to
74         # the default, doing them all.
75         if (! defined $dh{DOPACKAGES} || ! @{$dh{DOPACKAGES}}) {
76                 if ($dh{DOINDEP} || $dh{DOARCH} || $dh{DOSAME}) {
77                         error("You asked that all arch in(dep) packages be built, but there are none of that type.");
78                 }
79                 push @{$dh{DOPACKAGES}},@allpackages;
80         }
81
82         # Check to see if -P was specified. If so, we can only act on a single
83         # package.
84         if ($dh{TMPDIR} && $#{$dh{DOPACKAGES}} > 0) {
85                 error("-P was specified, but multiple packages would be acted on (".join(",",@{$dh{DOPACKAGES}}).").");
86         }
87
88         # Figure out which package is the first one we were instructed to build.
89         # This package gets special treatement: files and directories specified on
90         # the command line may affect it.
91         $dh{FIRSTPACKAGE}=${$dh{DOPACKAGES}}[0];
92
93         # If no error handling function was specified, just propigate
94         # errors out.
95         if (! exists $dh{ERROR_HANDLER} || ! defined $dh{ERROR_HANDLER}) {
96                 $dh{ERROR_HANDLER}='exit \$?';
97         }
98 }
99
100 # Run at exit. Add the command to the log files for the packages it acted
101 # on, if it's exiting successfully.
102 my $write_log=1;
103 sub END {
104         if ($? == 0 && $write_log) {
105                 my $cmd=basename($0);
106                 foreach my $package (@{$dh{DOPACKAGES}}) {
107                         my $ext=pkgext($package);
108                         my $log="debian/${ext}debhelper.log";
109                         open(LOG, ">>", $log) || error("failed to write to ${log}: $!");
110                         print LOG $cmd."\n";
111                         close LOG;
112                 }
113         }
114 }
115
116 sub inhibit_log {
117         $write_log=0;
118 }
119
120 # Pass it an array containing the arguments of a shell command like would
121 # be run by exec(). It turns that into a line like you might enter at the
122 # shell, escaping metacharacters and quoting arguments that contain spaces.
123 sub escape_shell {
124         my @args=@_;
125         my $line="";
126         my @ret;
127         foreach my $word (@args) {
128                 if ($word=~/\s/) {
129                         # Escape only a few things since it will be quoted.
130                         # Note we use double quotes because you cannot
131                         # escape ' in single quotes, while " can be escaped
132                         # in double.
133                         # This does make -V"foo bar" turn into "-Vfoo bar",
134                         # but that will be parsed identically by the shell
135                         # anyway..
136                         $word=~s/([\n`\$"\\])/\\$1/g;
137                         push @ret, "\"$word\"";
138                 }
139                 else {
140                         # This list is from _Unix in a Nutshell_. (except '#')
141                         $word=~s/([\s!"\$()*+#;<>?@\[\]\\`|~])/\\$1/g;
142                         push @ret,$word;
143                 }
144         }
145         return join(' ', @ret);
146 }
147
148 # Run a command, and display the command to stdout if verbose mode is on.
149 # All commands that modifiy files in $TMP should be ran via this 
150 # function.
151 #
152 # Note that this cannot handle complex commands, especially anything
153 # involving redirection. Use complex_doit instead.
154 sub doit {
155         verbose_print(escape_shell(@_));
156
157         if (! $dh{NO_ACT}) {
158                 my $ret=system(@_);
159                 $ret == 0 || error("command returned error code $ret");
160         }
161 }
162
163 # Run a command and display the command to stdout if verbose mode is on.
164 # Use doit() if you can, instead of this function, because this function
165 # forks a shell. However, this function can handle more complicated stuff
166 # like redirection.
167 sub complex_doit {
168         verbose_print(join(" ",@_));
169         
170         if (! $dh{NO_ACT}) {
171                 # The join makes system get a scalar so it forks off a shell.
172                 system(join(" ",@_)) == 0
173                         || error("command returned error code");
174         }                       
175 }
176
177 # Run a command that may have a huge number of arguments, like xargs does.
178 # Pass in a reference to an array containing the arguments, and then other
179 # parameters that are the command and any parameters that should be passed to
180 # it each time.
181 sub xargs {
182         my $args=shift;
183
184         # The kernel can accept command lines up to 20k worth of characters.
185         my $command_max=20000; # LINUX SPECIFIC!!
186                         # I could use POSIX::ARG_MAX, but that would be slow.
187
188         # Figure out length of static portion of command.
189         my $static_length=0;
190         foreach (@_) {
191                 $static_length+=length($_)+1;
192         }
193         
194         my @collect=();
195         my $length=$static_length;
196         foreach (@$args) {
197                 if (length($_) + 1 + $static_length > $command_max) {
198                         error("This command is greater than the maximum command size allowed by the kernel, and cannot be split up further. What on earth are you doing? \"@_ $_\"");
199                 }
200                 $length+=length($_) + 1;
201                 if ($length < $command_max) {
202                         push @collect, $_;
203                 }
204                 else {
205                         doit(@_,@collect) if $#collect > -1;
206                         @collect=($_);
207                         $length=$static_length + length($_) + 1;
208                 }
209         }
210         doit(@_,@collect) if $#collect > -1;
211 }
212
213 # Print something if the verbose flag is on.
214 sub verbose_print {
215         my $message=shift;
216         
217         if ($dh{VERBOSE}) {
218                 print "\t$message\n";
219         }
220 }
221
222 # Output an error message and exit.
223 sub error {
224         my $message=shift;
225
226         warning($message);
227         exit 1;
228 }
229
230 # Output a warning.
231 sub warning {
232         my $message=shift;
233         
234         print STDERR basename($0).": $message\n";
235 }
236
237 # Returns the basename of the argument passed to it.
238 sub basename {
239         my $fn=shift;
240
241         $fn=~s/\/$//g; # ignore trailing slashes
242         $fn=~s:^.*/(.*?)$:$1:;
243         return $fn;
244 }
245
246 # Returns the directory name of the argument passed to it.
247 sub dirname {
248         my $fn=shift;
249         
250         $fn=~s/\/$//g; # ignore trailing slashes
251         $fn=~s:^(.*)/.*?$:$1:;
252         return $fn;
253 }
254
255 # Pass in a number, will return true iff the current compatibility level
256 # is less than or equal to that number.
257 {
258         my $warned_compat=0;
259         my $c;
260
261         sub compat {
262                 my $num=shift;
263         
264                 if (! defined $c) {
265                         $c=1;
266                         if (defined $ENV{DH_COMPAT}) {
267                                 $c=$ENV{DH_COMPAT};
268                         }
269                         elsif (-e 'debian/compat') {
270                                 # Try the file..
271                                 open (COMPAT_IN, "debian/compat") || error "debian/compat: $!";
272                                 my $l=<COMPAT_IN>;
273                                 if (! defined $l || ! length $l) {
274                                         warning("debian/compat is empty, assuming level $c");
275                                 }
276                                 else {
277                                         chomp $l;
278                                         $c=$l;
279                                 }
280                         }
281                 }
282
283                 if ($c < 4 && ! $warned_compat) {
284                         warning("Compatibility levels before 4 are deprecated.");
285                         $warned_compat=1;
286                 }
287         
288                 if ($c > $max_compat) {
289                         error("Sorry, but $max_compat is the highest compatibility level supported by this debhelper.");
290                 }
291
292                 return ($c <= $num);
293         }
294 }
295
296 # Pass it a name of a binary package, it returns the name of the tmp dir to
297 # use, for that package.
298 sub tmpdir {
299         my $package=shift;
300
301         if ($dh{TMPDIR}) {
302                 return $dh{TMPDIR};
303         }
304         elsif (compat(1) && $package eq $dh{MAINPACKAGE}) {
305                 # This is for back-compatibility with the debian/tmp tradition.
306                 return "debian/tmp";
307         }
308         else {
309                 return "debian/$package";
310         }
311 }
312
313 # Pass this the name of a binary package, and the name of the file wanted
314 # for the package, and it will return the actual existing filename to use.
315 #
316 # It tries several filenames:
317 #   * debian/package.filename.buildarch
318 #   * debian/package.filename
319 #   * debian/file (if the package is the main package)
320 # If --name was specified then tonly the first two are tried, and they must
321 # have the name after the pacage name:
322 #   * debian/package.name.filename.buildarch
323 #   * debian/package.name.filename
324 sub pkgfile {
325         my $package=shift;
326         my $filename=shift;
327
328         if (defined $dh{NAME}) {
329                 $filename="$dh{NAME}.$filename";
330         }
331         
332         my @try=("debian/$package.$filename.".buildarch(),
333                  "debian/$package.$filename");
334         if ($package eq $dh{MAINPACKAGE}) {
335                 push @try, "debian/$filename";
336         }
337         
338         foreach my $file (@try) {
339                 if (-f $file &&
340                     (! $dh{IGNORE} || ! exists $dh{IGNORE}->{$file})) {
341                         return $file;
342                 }
343
344         }
345
346         return "";
347
348 }
349
350 # Pass it a name of a binary package, it returns the name to prefix to files
351 # in debian/ for this package.
352 sub pkgext {
353         my $package=shift;
354
355         if (compat(1) and $package eq $dh{MAINPACKAGE}) {
356                 return "";
357         }
358         return "$package.";
359 }
360
361 # Pass it the name of a binary package, it returns the name to install
362 # files by in eg, etc. Normally this is the same, but --name can override
363 # it.
364 sub pkgfilename {
365         my $package=shift;
366
367         if (defined $dh{NAME}) {
368                 return $dh{NAME};
369         }
370         return $package;
371 }
372
373 # Returns 1 if the package is a native debian package, null otherwise.
374 # As a side effect, sets $dh{VERSION} to the version of this package.
375 {
376         # Caches return code so it only needs to run dpkg-parsechangelog once.
377         my %isnative_cache;
378         
379         sub isnative {
380                 my $package=shift;
381
382                 return $isnative_cache{$package} if defined $isnative_cache{$package};
383                 
384                 # Make sure we look at the correct changelog.
385                 my $isnative_changelog=pkgfile($package,"changelog");
386                 if (! $isnative_changelog) {
387                         $isnative_changelog="debian/changelog";
388                 }
389                 # Get the package version.
390                 my $version=`dpkg-parsechangelog -l$isnative_changelog`;
391                 ($dh{VERSION})=$version=~m/Version:\s*(.*)/m;
392                 # Did the changelog parse fail?
393                 if (! defined $dh{VERSION}) {
394                         error("changelog parse failure");
395                 }
396
397                 # Is this a native Debian package?
398                 if ($dh{VERSION}=~m/.*-/) {
399                         return $isnative_cache{$package}=0;
400                 }
401                 else {
402                         return $isnative_cache{$package}=1;
403                 }
404         }
405 }
406
407 # Automatically add a shell script snippet to a debian script.
408 # Only works if the script has #DEBHELPER# in it.
409 #
410 # Parameters:
411 # 1: package
412 # 2: script to add to
413 # 3: filename of snippet
414 # 4: sed to run on the snippet. Ie, s/#PACKAGE#/$PACKAGE/
415 sub autoscript {
416         my $package=shift;
417         my $script=shift;
418         my $filename=shift;
419         my $sed=shift || "";
420
421         # This is the file we will modify.
422         my $outfile="debian/".pkgext($package)."$script.debhelper";
423
424         # Figure out what shell script snippet to use.
425         my $infile;
426         if (defined($ENV{DH_AUTOSCRIPTDIR}) && 
427             -e "$ENV{DH_AUTOSCRIPTDIR}/$filename") {
428                 $infile="$ENV{DH_AUTOSCRIPTDIR}/$filename";
429         }
430         else {
431                 if (-e "/usr/share/debhelper/autoscripts/$filename") {
432                         $infile="/usr/share/debhelper/autoscripts/$filename";
433                 }
434                 else {
435                         error("/usr/share/debhelper/autoscripts/$filename does not exist");
436                 }
437         }
438
439         if (-e $outfile && ($script eq 'postrm' || $script eq 'prerm')
440            && !compat(5)) {
441                 # Add fragments to top so they run in reverse order when removing.
442                 complex_doit("echo \"# Automatically added by ".basename($0)."\"> $outfile.new");
443                 complex_doit("sed \"$sed\" $infile >> $outfile.new");
444                 complex_doit("echo '# End automatically added section' >> $outfile.new");
445                 complex_doit("cat $outfile >> $outfile.new");
446                 complex_doit("mv $outfile.new $outfile");
447         }
448         else {
449                 complex_doit("echo \"# Automatically added by ".basename($0)."\">> $outfile");
450                 complex_doit("sed \"$sed\" $infile >> $outfile");
451                 complex_doit("echo '# End automatically added section' >> $outfile");
452         }
453 }
454
455 # Removes a whole substvar line.
456 sub delsubstvar {
457         my $package=shift;
458         my $substvar=shift;
459
460         my $ext=pkgext($package);
461         my $substvarfile="debian/${ext}substvars";
462
463         if (-e $substvarfile) {
464                 complex_doit("grep -s -v '^${substvar}=' $substvarfile > $substvarfile.new || true");
465                 doit("mv", "$substvarfile.new","$substvarfile");
466         }
467 }
468                                 
469 # Adds a dependency on some package to the specified
470 # substvar in a package's substvar's file.
471 sub addsubstvar {
472         my $package=shift;
473         my $substvar=shift;
474         my $deppackage=shift;
475         my $verinfo=shift;
476         my $remove=shift;
477
478         my $ext=pkgext($package);
479         my $substvarfile="debian/${ext}substvars";
480         my $str=$deppackage;
481         $str.=" ($verinfo)" if defined $verinfo && length $verinfo;
482
483         # Figure out what the line will look like, based on what's there
484         # now, and what we're to add or remove.
485         my $line="";
486         if (-e $substvarfile) {
487                 my %items;
488                 open(SUBSTVARS_IN, "$substvarfile") || error "read $substvarfile: $!";
489                 while (<SUBSTVARS_IN>) {
490                         chomp;
491                         if (/^\Q$substvar\E=(.*)/) {
492                                 %items = map { $_ => 1} split(", ", $1);
493                                 
494                                 last;
495                         }
496                 }
497                 close SUBSTVARS_IN;
498                 if (! $remove) {
499                         $items{$str}=1;
500                 }
501                 else {
502                         delete $items{$str};
503                 }
504                 $line=join(", ", sort keys %items);
505         }
506         elsif (! $remove) {
507                 $line=$str;
508         }
509
510         if (length $line) {
511                  complex_doit("(grep -s -v ${substvar} $substvarfile; echo ".escape_shell("${substvar}=$line").") > $substvarfile.new");
512                  doit("mv", "$substvarfile.new", $substvarfile);
513         }
514         else {
515                 delsubstvar($package,$substvar);
516         }
517 }
518
519 # Reads in the specified file, one line at a time. splits on words, 
520 # and returns an array of arrays of the contents.
521 # If a value is passed in as the second parameter, then glob
522 # expansion is done in the directory specified by the parameter ("." is
523 # frequently a good choice).
524 sub filedoublearray {
525         my $file=shift;
526         my $globdir=shift;
527
528         my @ret;
529         open (DH_FARRAY_IN, $file) || error("cannot read $file: $1");
530         while (<DH_FARRAY_IN>) {
531                 chomp;
532                 # Only ignore comments and empty lines in v5 mode.
533                 if (! compat(4)) {
534                         next if /^#/ || /^$/;
535                 }
536                 my @line;
537                 # Only do glob expansion in v3 mode.
538                 #
539                 # The tricky bit is that the glob expansion is done
540                 # as if we were in the specified directory, so the
541                 # filenames that come out are relative to it.
542                 if (defined $globdir && ! compat(2)) {
543                         for (map { glob "$globdir/$_" } split) {
544                                 s#^$globdir/##;
545                                 push @line, $_;
546                         }
547                 }
548                 else {
549                         @line = split;
550                 }
551                 push @ret, [@line];
552         }
553         close DH_FARRAY_IN;
554         
555         return @ret;
556 }
557
558 # Reads in the specified file, one word at a time, and returns an array of
559 # the result. Can do globbing as does filedoublearray.
560 sub filearray {
561         return map { @$_ } filedoublearray(@_);
562 }
563
564 # Passed a filename, returns true if -X says that file should be excluded.
565 sub excludefile {
566         my $filename = shift;
567         foreach my $f (@{$dh{EXCLUDE}}) {
568                 return 1 if $filename =~ /\Q$f\E/;
569         }
570         return 0;
571 }
572
573 # Returns the build architecture. (Memoized)
574 {
575         my $arch;
576         
577         sub buildarch {
578                 return $arch if defined $arch;
579
580                 $arch=`dpkg-architecture -qDEB_HOST_ARCH 2>/dev/null` || error("dpkg-architecture failed");
581                 chomp $arch;
582                 return $arch;
583         }
584 }
585
586 # Passed an arch and a list of arches to match against, returns true if matched
587 sub samearch {
588         my $arch=shift;
589         my @archlist=split(/\s+/,shift);
590
591         foreach my $a (@archlist) {
592                 system("dpkg-architecture", "-a$arch", "-i$a") == 0 && return 1;
593         }
594
595         return 0;
596 }
597
598 # Returns a list of packages in the control file.
599 # Must pass "arch" or "indep" or "same" to specify arch-dependant or
600 # -independant or same arch packages. If nothing is specified, returns all
601 # packages.
602 # As a side effect, populates %package_arches and %package_types with the
603 # types of all packages (not only those returned).
604 my (%package_types, %package_arches);
605 sub getpackages {
606         my $type=shift;
607
608         %package_types=();
609         %package_arches=();
610         
611         $type="" if ! defined $type;
612         
613         # Look up the build arch if we need to.
614         my $buildarch='';
615         if ($type eq 'same') {
616                 $buildarch=buildarch();
617         }
618
619         my $package="";
620         my $arch="";
621         my $package_type;
622         my @list=();
623         my %seen;
624         open (CONTROL, 'debian/control') ||
625                 error("cannot read debian/control: $!\n");
626         while (<CONTROL>) {
627                 chomp;
628                 s/\s+$//;
629                 if (/^Package:\s*(.*)/) {
630                         $package=$1;
631                         # Detect duplicate package names in the same control file.
632                         if (! $seen{$package}) {
633                                 $seen{$package}=1;
634                         }
635                         else {
636                                 error("debian/control has a duplicate entry for $package");
637                         }
638                         $package_type="deb";
639                 }
640                 if (/^Architecture:\s*(.*)/) {
641                         $arch=$1;
642                 }
643                 if (/^(?:X[BC]*-)?Package-Type:\s*(.*)/) {
644                         $package_type=$1;
645                 }
646                 
647                 if (!$_ or eof) { # end of stanza.
648                         if ($package) {
649                                 $package_types{$package}=$package_type;
650                                 $package_arches{$package}=$arch;
651                         }
652                         if ($package &&
653                             (($type eq 'indep' && $arch eq 'all') ||
654                              ($type eq 'arch' && $arch ne 'all') ||
655                              ($type eq 'same' && ($arch eq 'any' || samearch($buildarch, $arch))) ||
656                              ! $type)) {
657                                 push @list, $package;
658                                 $package="";
659                                 $arch="";
660                         }
661                 }
662         }
663         close CONTROL;
664
665         return @list;
666 }
667
668 # Returns the arch a package will build for.
669 sub package_arch {
670         my $package=shift;
671         
672         if (! exists $package_arches{$package}) {
673                 warning "package $package is not in control info";
674                 return buildarch();
675         }
676         return $package_arches{$package} eq 'all' ? "all" : buildarch();
677 }
678
679 # Return true if a given package is really a udeb.
680 sub is_udeb {
681         my $package=shift;
682         
683         if (! exists $package_types{$package}) {
684                 warning "package $package is not in control info";
685                 return 0;
686         }
687         return $package_types{$package} eq 'udeb';
688 }
689
690 # Generates the filename that is used for a udeb package.
691 sub udeb_filename {
692         my $package=shift;
693         
694         my $filearch=package_arch($package);
695         isnative($package); # side effect
696         my $version=$dh{VERSION};
697         $version=~s/^[0-9]+://; # strip any epoch
698         return "${package}_${version}_$filearch.udeb";
699 }
700
701 # Handles #DEBHELPER# substitution in a script; also can generate a new
702 # script from scratch if none exists but there is a .debhelper file for it.
703 sub debhelper_script_subst {
704         my $package=shift;
705         my $script=shift;
706         
707         my $tmp=tmpdir($package);
708         my $ext=pkgext($package);
709         my $file=pkgfile($package,$script);
710
711         if ($file ne '') {
712                 if (-f "debian/$ext$script.debhelper") {
713                         # Add this into the script, where it has #DEBHELPER#
714                         complex_doit("perl -pe 's~#DEBHELPER#~qx{cat debian/$ext$script.debhelper}~eg' < $file > $tmp/DEBIAN/$script");
715                 }
716                 else {
717                         # Just get rid of any #DEBHELPER# in the script.
718                         complex_doit("sed s/#DEBHELPER#// < $file > $tmp/DEBIAN/$script");
719                 }
720                 doit("chown","0:0","$tmp/DEBIAN/$script");
721                 doit("chmod",755,"$tmp/DEBIAN/$script");
722         }
723         elsif ( -f "debian/$ext$script.debhelper" ) {
724                 complex_doit("printf '#!/bin/sh\nset -e\n' > $tmp/DEBIAN/$script");
725                 complex_doit("cat debian/$ext$script.debhelper >> $tmp/DEBIAN/$script");
726                 doit("chown","0:0","$tmp/DEBIAN/$script");
727                 doit("chmod",755,"$tmp/DEBIAN/$script");
728         }
729 }
730
731 1