]> git.sur5r.net Git - bacula/rescue/blob - rescue/linux/cdrom/yaird-0.0.5/perl/PhysicalVolume.pm
4d8fc4fbba4324e5e7a33509d00216b2f3b97f9f
[bacula/rescue] / rescue / linux / cdrom / yaird-0.0.5 / perl / PhysicalVolume.pm
1 #!perl -w
2 #
3 # PhysicalVolume -- Physical Volume Descriptor
4 #   Copyright (C) 2005  Erik van Konijnenburg
5 #
6 #   This program is free software; you can redistribute it and/or modify
7 #   it under the terms of the GNU General Public License as published by
8 #   the Free Software Foundation; either version 2 of the License, or
9 #   (at your option) any later version.
10 #
11 #   This program is distributed in the hope that it will be useful,
12 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #   GNU General Public License for more details.
15 #
16 #   You should have received a copy of the GNU General Public License
17 #   along with this program; if not, write to the Free Software
18 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 #
20 # pvnam - physical volume name
21 # vgnam - volume group name
22 # devno - "major:minor"
23 #
24
25 use strict;
26 use warnings;
27 package PhysicalVolume;
28 use base 'Obj';
29
30 sub fill {
31         my $self = shift;
32         $self->SUPER::fill();
33         $self->takeArgs ('pvnam', 'vgnam', 'uuid');
34 }
35
36 sub pvnam       { return $_[0]->{pvnam}; }
37 sub vgnam       { return $_[0]->{vgnam}; }
38 sub uuid        { return $_[0]->{uuid}; }
39
40 sub string {
41         my $self = shift;
42         my $pvnam = $self->pvnam;
43         my $vgnam = $self->vgnam;
44         my $uuid = $self->uuid;
45         my $str = "$pvnam in $vgnam, $uuid";
46         return $str;
47 }
48
49 1;