package Cpanel::BinUtils; # cpanel - Cpanel/BinUtils.pm Copyright(c) 2011 cPanel, Inc. # All rights Reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited use strict; our $VERSION = '0.2'; sub find_mount { my ($self) = @_; my ( @LOC, $loc ); @LOC = ( "/bin/mount", "/sbin/mount" ); foreach $loc (@LOC) { if ( -e $loc ) { return $loc; } } } 1;