############################################################ # # $Id: Freebsd.pm 364 2006-03-23 15:22:19Z nicolaw $ # Sys::Filesystem - Retrieve list of filesystems and their properties # # Copyright 2004,2005,2006 Nicola Worthington # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ############################################################ package Sys::Filesystem::Freebsd; # vim:ts=4:sw=4:tw=78 use strict; use FileHandle; use Carp qw(croak); use vars qw($VERSION); $VERSION = '1.05' || sprintf('%d', q$Revision: 364 $ =~ /(\d+)/g); sub new { ref(my $class = shift) && croak 'Class name required'; my %args = @_; my $self = { }; $args{fstab} ||= '/etc/fstab'; $args{mtab} ||= '/etc/mtab'; $args{xtab} ||= '/etc/lib/nfs/xtab'; my @keys = qw(fs_spec fs_file fs_vfstype fs_mntops fs_freq fs_passno); my @special_fs = qw(swap proc devpts tmpfs); # Read the fstab my $fstab = new FileHandle; if ($fstab->open($args{fstab})) { while (<$fstab>) { next if (/^\s*#/ || /^\s*$/); my @vals = split(/\s+/, $_); $self->{$vals[1]}->{mount_point} = $vals[1]; $self->{$vals[1]}->{device} = $vals[0]; $self->{$vals[1]}->{unmounted} = 1; $self->{$vals[1]}->{special} = 1 if grep(/^$vals[2]$/,@special_fs); for (my $i = 0; $i < @keys; $i++) { $self->{$vals[1]}->{$keys[$i]} = $vals[$i]; } } $fstab->close; } else { croak "Unable to open fstab file ($args{fstab})\n"; } # Read the mtab my $mtab = new FileHandle; if ($mtab->open($args{mtab})) { while (<$mtab>) { next if (/^\s*#/ || /^\s*$/); my @vals = split(/\s+/, $_); delete $self->{$vals[1]}->{unmounted} if exists $self->{$vals[1]}->{unmounted}; $self->{$vals[1]}->{mounted} = 1; $self->{$vals[1]}->{mount_point} = $vals[1]; $self->{$vals[1]}->{device} = $vals[0]; $self->{$vals[1]}->{special} = 1 if grep(/^$vals[2]$/,qw(swap proc devpts tmpfs)); for (my $i = 0; $i < @keys; $i++) { $self->{$vals[1]}->{$keys[$i]} = $vals[$i]; } } $mtab->close; } else { croak "Unable to open mtab file ($args{mtab})\n"; } # Bless and return bless($self,$class); return $self; } 1; # See the fstab(5) manual page for important information on automatic mounts # of network filesystems before modifying this file. # # Device Mountpoint FStype Options Dump Pass# #/dev/da0s1b none swap sw 0 0 #/dev/da1s1b none swap sw 0 0 #/dev/da0s1a / ufs rw 1 1 #/dev/da1s1e /home ufs rw 2 2 #/dev/da0s1e /usr ufs rw 2 2 #/dev/da1s1f /var ufs rw 2 2 #/dev/acd0c /cdrom cd9660 ro,noauto 0 0 #/var/tmp /tmp null rw 0 0 #proc /proc procfs rw 0 0 #/etc/portal.conf /p portal rw 0 0 ############################################################################### # POD =pod =head1 NAME Sys::Filesystem::Freebsd - Return Freebsd filesystem information to Sys::Filesystem =head1 SYNOPSIS See L. =head1 METHODS The following is a list of filesystem properties which may be queried as methods through the parent L object. =over 4 =item fs_spec Dscribes the block special device or remote filesystem to be mounted. =item fs_file Describes the mount point for the filesystem. For swap partitions, this field should be specified as none. If the name of the mount point contains spaces these can be escaped as \040. =item fs_vfstype Dscribes the type of the filesystem. =item fs_mntops Describes the mount options associated with the filesystem. =item fs_freq Used for these filesystems by the L command to determine which filesystems need to be dumped. =item fs_passno Used by the L program to determine the order in which filesystem checks are done at reboot time. =back =head1 SEE ALSO L, L, L =head1 VERSION $Id: Freebsd.pm 364 2006-03-23 15:22:19Z nicolaw $ =head1 AUTHOR Nicola Worthington L =head1 COPYRIGHT Copyright 2004,2005,2006 Nicola Worthington. This software is licensed under The Apache Software License, Version 2.0. L =cut