# # # osds_singlefs_mount.pm # # Copyright (c) 2007, 2009, Oracle and/or its affiliates.All rights reserved. # # # NAME # osd_acfssinglefsmount.pm - Linux OSD component of acfssinglefsmount. # # DESCRIPTION # Purpose # Mount/unmount USM file systems. # # NOTES # All user visible output should be done in the common code. # this will ensure a consistent look and feel across all platforms. # # use strict; package osds_acfssinglefsmount; require Exporter; our @ISA = qw(Exporter); our @EXPORT = qw( osds_initialize ); use osds_acfslib; use acfslib; # make sure that /sbin is in the PATH $ENV{PATH} = $ENV{PATH} . ':/sbin'; # osds_initialize # # platform dependent initialization # sub osds_initialize { my ($return_str); # nothing to do yet return($return_str); }