mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-04-30 17:32:49 +00:00
15 lines
239 B
Perl
15 lines
239 B
Perl
package PVE::QemuServer::CGroup;
|
|
|
|
use strict;
|
|
use warnings;
|
|
use PVE::CGroup;
|
|
use base('PVE::CGroup');
|
|
|
|
sub get_subdir {
|
|
my ($self, $controller, $limiting) = @_;
|
|
my $vmid = $self->{vmid};
|
|
return "qemu.slice/$vmid.scope/";
|
|
}
|
|
|
|
1;
|