1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

F #4089: minor fix (#4451)

This commit is contained in:
Christian González 2020-03-31 10:49:45 +02:00 committed by GitHub
parent f777e004b0
commit 9609a4f07c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,17 +24,17 @@ require 'opennebula_vm'
# This class interacts with Firecracker
class MicroVM
# rubocop:disable Naming/AccessorMethodName
# rubocop:disable Layout/LineLength
#---------------------------------------------------------------------------
# List of commands executed by the driver.
#---------------------------------------------------------------------------
COMMANDS = {
:clean => 'sudo /var/tmp/one/vmm/firecracker/clean_fc',
:clean => 'sudo /var/tmp/one/vmm/firecracker/one-clean-firecracker-domain',
:map_context => '/var/tmp/one/vmm/firecracker/map_context'
}
# rubocop:disable Naming/AccessorMethodName
# rubocop:disable Layout/LineLength
#---------------------------------------------------------------------------
# Class constructors & static methods
#---------------------------------------------------------------------------