Autosys Config file update on a read-only filer

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Autosys Config file update on a read-only filer
# 1  
Old 03-11-2010
Autosys Config file update on a read-only filer

Hi To All Genius out there,

We are running autosys application on solaris 10. In autosys we have a configuration file that contains an Autosys instance configuration data and is located on a NFS filer on which we have a read-only access.

Our Autosys environment is on a dual server mode(Active & Passive). Now in case of a primary server failure the secondary server takes over and before that the config file has to be updated with the Shadow server as the primary.

The twist is here, as the config file is on a read-only NFS filer and can only be updated using Clearcase utility so we need to have fix for this so that the config file is updated and the security mechanism (Clearcase) is also not overridden.

Any Help on this issue will be highly appreciated.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Update config file using shell script in Solaris 5.10

hi I need to update the value in config.txt value using shell script example: lets say a value in config.txt file is as SEQUENCE=1 after some iteration as the loop ends , the SEQUENCE should get update in the config.txt file with a new value of SEQUENCE=2. also , can anyone please help me... (7 Replies)
Discussion started by: ravidwivedi2288
7 Replies

2. Shell Programming and Scripting

Script to detect dynamic ip change and update to config file

Hi All, I am newbie here and request your assistance. I have a service running on public ip, but since I have a dynamic IP it keeps on changing and every time I need to manually get the new ip and add to the config file and restart the service. This has become bit time consuming. Hence, I... (4 Replies)
Discussion started by: Shaan_Shaan
4 Replies

3. Shell Programming and Scripting

Read Data from Config file using Perl

Hi All, Can anyone please explain me how to read data from config file in Perl. Suppose i have a config file named cfile. The data in config file is name=parth lname=mittal user=2007 hostname=fluoride username=parthmittal password=XXXXXX account=unix url=www.unix.com ... (2 Replies)
Discussion started by: parthmittal2007
2 Replies

4. Shell Programming and Scripting

Read from config file and use it in perl program

Hi, I want to configure some values in config file like below work_dir /home/work csv_dir /home/csv sql_dir /home/sqls reportfirst yes and i want to store each value in variable to use it further in my my perl program ?? any thought on this(i am new to perl) ? ... (2 Replies)
Discussion started by: raghavendra.nsn
2 Replies

5. Shell Programming and Scripting

how to read the variable indivdually from config file

how to read the variable indivdually ( line by line ) in shell script eg : i have the config file where contain cat /home/user01/ilap/conf/input.conf node.txt node2.txt node3.txt i need to run script like /home/user01/ilap/exe/run.sh /home/user01/ilap/conf/input.conf ... (1 Reply)
Discussion started by: mail2sant
1 Replies

6. Programming

Read arguments from a config file in C

Hello everybody, I'm coding a program in C and i'm getting troubles with this. I need to read a config file and store the arguments into individual variables, let's say the config file looks like the following: #This is the configuration file... 192.168.0.1 A1:B1:C1:D1:E1:F1 192.168.0.2... (2 Replies)
Discussion started by: semash!
2 Replies

7. Solaris

Autosys Config file update on a read-only filer

Hi To All Genius out there, We are running autosys application on solaris 10. In autosys we have a configuration file that contains an Autosys instance configuration data and is located on a NFS filer on which we have a read-only access. Our Autosys environment is on a dual server mode(Active... (0 Replies)
Discussion started by: whn_chips_r_dwn
0 Replies

8. Shell Programming and Scripting

Read from a config file.

Hello All, I have a config file which has the following data : export DBCHECKSUM001="/home/srvcdesk/DBCheckSum/DBCheckSum001.cfg" export DBCHECKSUM002="/home/srvcdesk/DBCheckSum/DBCheckSum002.cfg" export DBCHECKSUM003="/home/srvcdesk/DBCheckSum/DBCheckSum003.cfg" export... (1 Reply)
Discussion started by: Veenak15
1 Replies

9. Shell Programming and Scripting

how to read the variable from config file

how to read the variable from config file eg: a.cfg below config file config file which contain a=`hostname` b=250 a.sh is shell script echo "$a and $b" if i run "a.sh 1.cfg" it works but when i declare N number of variable it wont works.. can u please suggest for that ? (1 Reply)
Discussion started by: mail2sant
1 Replies

10. UNIX for Dummies Questions & Answers

How to Read a config file and Assign to Variable

I have removeConfig file, it contains the dir paths for removing. I need to read line by line and assign to variable. any idea? (1 Reply)
Discussion started by: redlotus72
1 Replies
Login or Register to Ask a Question
Config(3pm)						  LogReport's Lire Documentation					       Config(3pm)

NAME
Lire::Config - import Lire configuration variables to perl SYNOPSIS
use Lire::Config; Lire::Config->init(); my $cfg->value = Lire::Config->get( 'lr_schemas_path' ); my $var = Lire::Config->get_var( 'lr_schemas_path' ); DESCRIPTION
This package provides the API to access the Lire configuration. METHODS
These methods can be called directly on a Lire::Config instance or the Lire::Config package itself. In the last case, it is the same thing as calling the method on the object returned by the instance() method. instance() Returns the singleton Lire::Config object from which configuration can be queried. config_spec() Returns the configuration specification used by the current configuration. config_spec_path() Returns a list of directories which will be searched for configuration specification file. By default, configuration specifications are only looked for in <datadir/lire/config-spec>. add_config_spec_path_dir( $dir ) This method adds a directory to list of directories that will is used to search for configuration specification files. del_config_spec_path_dir( $dir ) This method removes a directory from the list of directories that is used to search for configuration specification files. config_files() Returns the list of configuration files that will be used for this configuration. add_config_path( $path ) Adds configuration files to the list of files that are part of the configuration. Directories will be scanned recursively. add_config_file( $file ) Adds a configuration file to the list of files that will be parsed to initialize the configuration. del_config_file( $file ) Removes a configuration file from the list of files that are part of the configuration. get_config_file($file) Get a parsed configuration file object from the list of files. init() This method loads and parses the configuration files. It should be called prior to using the get() method to obtain configuration data. This method will throw an exception in case there is an invalid parameter in the configuration. get( $varname ) Returns the configuration value for the $varname configuration variable. init() should have been called to load the configuration data before using this method. It will croak() otherwise. If the $varname is unknown, an exception will also be thrown. get_var( $varname ) Returns the configuration value for the $varname configuration variable as the configuration object. init() should have been called to load the configuration data before using this method. It will croak() otherwise. If the $varname is unknown, an exception will also be thrown. DEBUGGING
One can call this module direct from the commandline, e.g. for debugging purposes, by doing something like: perl -e 'use lib "/path/to/your/share/perl5"; use Lire::Config; use Lire::Program; print Lire::Config->get( "lr_mail_from" ), " "' or perl -e 'use Lire::Config; use Lire::Program; $a = Lire::Config->get( lr_converters_init_path ); print "@$a "; ' . SEE ALSO
Lire::Config::TypeSpec(3pm), Lire::Config::Value(3pm) AUTHORS
Wessel Dankers <wsl@logreport.org> Francis J. Lacoste <flacoste@logreport.org> Joost van Baal <joostvb@logreport.org> VERSION
$Id: Config.pm,v 1.47 2006/07/23 13:16:28 vanbaal Exp $ COPYRIGHT
Copyright (C) 2001-2004 Stichting LogReport Foundation LogReport@LogReport.org This file is part of Lire. Lire 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 of the License, 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 (see COPYING); if not, check with http://www.gnu.org/copyleft/gpl.html. Lire 2.1.1 2006-07-23 Config(3pm)