Tagged Questions
0
votes
1answer
42 views
Hierarchical configuration file in perl
I am writing a test automation software in perl and I came across a problem with the configuration files I defined.
The automation software receives an input CFG file written in perl hash that among ...
1
vote
1answer
297 views
Using variables from a config/properties file in a perl script
If I have a page of configurable variables separate from my perl script, how can I use them in it?
Say I have these variables in the file..
database.properties:
database = ...
1
vote
1answer
71 views
WebApp configuration in mod_perl 2 environment
I have a web app I'm writing in mod_perl 2. (It's a custom handler module, not registry or perlrun scripts.) There are several configuration options I'd like to have set at server initialization, ...
0
votes
1answer
408 views
Config::Simple and constant assignation in perl
I am using the Config::Simple module and the constant pragma. I am parsing a configuration file and setting the values as constant. the test configuration file (test.ini) contains:
...
1
vote
2answers
592 views
Can anyone recommend solution to my situation with XML
Sorry for not being clear.
The problem I am trying to convey is that XML::Simple does not allow me direct access to the hash, I must refer to the key in question through the XML::Simple module. Using ...
0
votes
2answers
311 views
Configuration Key Value Store
I'm in the planning stages of a script/app that I'm going to need to write soon. In short, I'm going to have a configuration file that stores multiple key value pairs for a system configuration. ...
0
votes
4answers
2k views
What is the best way to make a simple Perl config file?
I am trying to make a simple config file for my Perl script, I originally was going to use Config::INIPlus but I don't think it is going to work. The config file does not need to be anything special. ...
3
votes
2answers
425 views
What is a good plain text configuration file format shared by PHP and Perl?
This is more of a concept question rather than a coding problem to be solved.
We have a number of scripts in both PHP and Perl.
There are a large number of MySQL servers spread around the company ...
0
votes
2answers
72 views
Is there a standard way for setting a site specific value at install time for Perl scripts? [duplicate]
Possible Duplicate:
Separating configuration data and script logic in Perl scripts
StevedoreUtil.pm sets a value used for email addresses:
my $STEVE_SITE_EMAIL_DOMAIN = "mydomain.net";
...
4
votes
1answer
170 views
How can I handle configuration files in Perl?
I'm refactoring an old script that does some operations on different sites. It needs to use a configuration file which is now a manually parsed text file with this format:
...
9
votes
8answers
780 views
Separating configuration data and script logic in Perl scripts
I find the following anti-pattern repeated in my Perl scripts: the script contains some machine/setup specific settings which I store in-line as constants in the script whereas the rest of the script ...
3
votes
5answers
345 views
Making a Perl script detect changes in a separate config module also in Perl
G'day,
We have a Perl script that is processing geolocation requests from the head-end servers in a major web site. The script is a broker providing additional business logic interpreting the data ...
1
vote
2answers
886 views
Representing a complex Perl data structure containing array references in Config::General
I have the following data structure in Perl code:
my $config = {
'View::Mason' => {
comp_root => [
[ 'teamsite' => 'root/teamsite' ],
[ 'components' ...
1
vote
4answers
148 views
How can I perform a substitutions on multiple variables whose names I don't know ahead of time?
I'm working on a Perl script where the user adds a number of set variables at the beginning of the script, all prefixed with $XX, as seen below. The user-set variables, however, need to go through a ...
3
votes
2answers
4k views
Perl Script Configuration and Relative Path Implementation on both Windows (XP) / Unix (Solaris)
Heylo,
I'm experiencing, somewhat of, a conundrum regarding perl script development. I have written a small Perl script using the standard (basic) Perl installation. I have the following setup:
...
4
votes
3answers
1k views
What's the best Perl module for hierarchical and inheritable configuration?
If I have a greenfield project, what is the best practice Perl based configuration module to use?
There will be a Catalyst app and some command line scripts. They should share the same ...
4
votes
1answer
469 views
How can I edit Kerberos 5 configuration files with Perl?
Has anyone come across a Perl module that will parse (and write) kerberos configuration files (ie /etc/krb5.conf)? I have looked at quite a few parsing modules like Config::General, Config::Auto, ...