HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: //usr/share/webmin/status/nfs-monitor.pl
# nfs-monitor.pl
# Monitor the NFS server process

sub get_nfs_status
{
return { 'up' => -1 } if (!&foreign_check("proc"));
&foreign_require("proc", "proc-lib.pl");
if (&foreign_installed("exports") || &foreign_installed("dfsadmin") ||
    &foreign_installed("bsdexports") || &foreign_installed("hpuxexports")) {
	return { 'up' => &find_named_process('nfsd') ? 1 : 0 };
	}
else {
	return { 'up' => -1 };
	}
}