diff options
Diffstat (limited to 'bbot')
-rw-r--r-- | bbot/manifest | 2 | ||||
-rw-r--r-- | bbot/manifest.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bbot/manifest b/bbot/manifest index 5122dc6..c95e83c 100644 --- a/bbot/manifest +++ b/bbot/manifest @@ -22,7 +22,7 @@ namespace bbot { - enum class machine_type {vm, container}; + enum class machine_type {kvm, nspawn}; class LIBBBOT_EXPORT machine_manifest { diff --git a/bbot/manifest.cxx b/bbot/manifest.cxx index 6c9fe4d..b9c623e 100644 --- a/bbot/manifest.cxx +++ b/bbot/manifest.cxx @@ -32,7 +32,7 @@ namespace bbot using strings = vector<string>; - static const strings machine_type_names ({"vm", "container"}); + static const strings machine_type_names ({"kvm", "nspawn"}); static const strings result_status_names ({ "success", |