diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> | 2006-06-07 09:52:54 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> | 2006-06-07 09:52:54 +0000 |
commit | 5fb342d91de5cd6dfd3a94511fcfa1102739b545 (patch) | |
tree | b1b7b539e23d3f6c978ae1669c267c74d4596599 /urpm/parallel_ssh.pm | |
parent | 610920956436a12457ffff01c64104acd838e08d (diff) | |
download | urpmi-5fb342d91de5cd6dfd3a94511fcfa1102739b545.tar urpmi-5fb342d91de5cd6dfd3a94511fcfa1102739b545.tar.gz urpmi-5fb342d91de5cd6dfd3a94511fcfa1102739b545.tar.bz2 urpmi-5fb342d91de5cd6dfd3a94511fcfa1102739b545.tar.xz urpmi-5fb342d91de5cd6dfd3a94511fcfa1102739b545.zip |
Use revision number as version numbers for internal modules.
For gurpmi.pm, use the same version number as urpm.
Diffstat (limited to 'urpm/parallel_ssh.pm')
-rw-r--r-- | urpm/parallel_ssh.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/urpm/parallel_ssh.pm b/urpm/parallel_ssh.pm index 1ed4406a..4e15e787 100644 --- a/urpm/parallel_ssh.pm +++ b/urpm/parallel_ssh.pm @@ -1,12 +1,14 @@ package urpm::parallel_ssh; +# $Id$ + #- Copyright (C) 2002, 2003, 2004, 2005 MandrakeSoft SA #- Copyright (C) 2005 Mandriva SA use strict; use Time::HiRes qw(gettimeofday); -(our $VERSION) = q$Id$ =~ /(\d+\.\d+)/; +(our $VERSION) = q$Revision$ =~ /(\d+)/; sub _localhost { $_[0] eq 'localhost' } sub _nolock { &_localhost ? '--nolock ' : '' } |