mirror of
https://github.com/webmin/webmin.git
synced 2026-03-10 04:42:07 +00:00
15 lines
256 B
Perl
15 lines
256 B
Perl
# Functions for FreeBSD disk management
|
|
#
|
|
# XXX call from mount module
|
|
# XXX include in makedist.pl
|
|
# XXX exclude from Solaris, RPM, Deb
|
|
|
|
use strict;
|
|
use warnings;
|
|
BEGIN { push(@INC, ".."); };
|
|
use WebminCore;
|
|
&init_config();
|
|
&foreign_require("mount");
|
|
|
|
1;
|