# # # osds_acfsregistrymount.pm # # Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. # # # NAME # osds_acfsregistrymount.pm - Linux OSD component of acfsregistrymount. # # 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_acfsregistrymount; require Exporter; our @ISA = qw(Exporter); our @EXPORT = qw( osds_get_state_file_name ); use osds_acfslib; use acfslib; $ENV{PATH} = $ENV{PATH} . ":/sbin"; sub osds_get_state_file_name { return ("/tmp/.usm_mount_state"); }