From: Wolfgang Bumiller Date: Wed, 10 Feb 2016 08:38:43 +0000 (+0100) Subject: CLIHandler: add missing use PVE::INotify X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=commitdiff_plain;h=881eb755318100c4587a3cb48cc5aa41f05f1a6d CLIHandler: add missing use PVE::INotify It uses PVE::INotify::inotify_init() in run_cli_handler(). --- diff --git a/src/PVE/CLIHandler.pm b/src/PVE/CLIHandler.pm index 21fb916..c2d3438 100644 --- a/src/PVE/CLIHandler.pm +++ b/src/PVE/CLIHandler.pm @@ -8,6 +8,7 @@ use PVE::SafeSyslog; use PVE::Exception qw(raise raise_param_exc); use PVE::RESTHandler; use PVE::PodParser; +use PVE::INotify; use base qw(PVE::RESTHandler);