/usr/bin/cipux_configuration is in libcipux-perl 3.4.0.13-4.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 | #!/usr/bin/perl -w -T
eval 'exec /usr/bin/perl -w -T -S $0 ${1+"$@"}'
if 0; # not running under some shell
# ID: $Id$
# Revision: $Revision$
# Head URL: $HeadURL$
# Date: $Date$
# Source: $Source$
use warnings;
use strict;
use CipUX::Cfg::Client;
use version; our $VERSION = qv('3.4.0.10');
my $cfgc = CipUX::Cfg::Client->new;
$cfgc->run;
exit 0;
__END__
=pod
=for stopwords CipUX STDOUT TODO Kuelker
=head1 NAME
cipux_configuration - prints CipUX configuration values
=head1 VERSION
version 3.4.0.10
=head1 SYNOPSIS
cipux_configuration
=head1 OPTIONS
None
=head1 REQUIRED ARGUMENTS
None
=head1 ARGUMENTS
None
=head1 USAGE
cipux_configuration
=head1 DESCRIPTION
Prints CipUX configuration values to STDOUT.
=head1 DIAGNOSTICS
TODO
=head1 EXIT STATUS
TODO
=head1 CONFIGURATION
None
=head1 DEPENDENCIES
Carp
CipUX
YAML::Any
version
=head1 INCOMPATIBILITIES
Not known.
=head1 BUGS AND LIMITATIONS
Not known.
=head1 SEE ALSO
See the CipUX web page and the manual at L<http://www.cipux.org>
See the mailing list L<http://sympa.cipworx.org/wws/info/cipux-devel>
=head1 AUTHOR
Christian Kuelker E<lt>christian.kuelker@cipworx.orgE<gt>
=head1 LICENSE AND COPYRIGHT
Copyright (C) 2009 - 2010 by Christian Kuelker
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2, or (at
your option) any later version.
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.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA
=cut
|