Update version number for next release

Allow the config files to be symlinks
This commit is contained in:
duncan_ferguson 2009-03-09 19:04:38 +00:00
parent 26f1230589
commit f9068cba2b
4 changed files with 4 additions and 3 deletions

View file

@ -2,6 +2,7 @@
* Add patch from David F. Skoll for adding colour to terminals
* Apply fix from Bogdan Pintea for DNS failing to resolve IPs
* Allow the configuration files to be symlinks (debian bug 518196)
2008-11-14 Duncan Ferguson <duncan_ferguson@user.sf.net> - v3.24-1

View file

@ -1,5 +1,5 @@
Name: clusterssh
Version: 3.24
Version: 3.25
Release: 1%{?dist}
Summary: Secure concurrent multi-server terminal control

View file

@ -16,7 +16,7 @@
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
AC_INIT
AM_INIT_AUTOMAKE(clusterssh,3.24)
AM_INIT_AUTOMAKE(clusterssh,3.25)
AC_PATH_PROGS(PERL, perl perl5)
if test ${sysconfdir} = '${prefix}/etc'; then
sysconfdir=/etc

View file

@ -242,7 +242,7 @@ sub load_config_defaults() {
sub parse_config_file($) {
my $config_file = shift;
logmsg( 2, "Reading in from config file $config_file" );
return if ( !-f $config_file );
return if ( !-e $config_file !-r $config_file );
open( CFG, $config_file ) or die("Couldnt open $config_file: $!");
while (<CFG>) {