Show binaries.pm.in syntax highlighted
package binaries;
# Blast these programs into the name space of calling scripts
# Used by nph-* scripts only (and coe_profiles for sendmail)
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw($TAR $CPIO $GZIP $GUNZIP $DIFF $FIND $MKISOFS $PALO $SENDMAIL $SUDO);
use vars @EXPORT;
# Needed programs (beyond those of FHS expected in /bin)
$TAR="@TAR@";
$CPIO="@CPIO@";
$GZIP="@GZIP@";
$GUNZIP="@GUNZIP@";
$DIFF="@DIFF@";
$FIND="@FIND@";
$MKISOFS="@MKISOFS@";
$PALO="@PALO@";
$SENDMAIL="@SENDMAIL@";
$SUDO="@SUDO@";
1;
See more files for this project here