This repository was archived by the owner on Feb 8, 2021. It is now read-only.
File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ if [[ $VIRT_DRIVER == "hyper" ]]; then
63
63
# fi
64
64
65
65
# Start the daemon - restart just in case the package ever auto-starts...
66
- restart_service hyper
66
+ restart_service hyperd
67
67
68
68
echo " Waiting for docker daemon to start..."
69
69
# DOCKER_GROUP=$(groups | cut -d' ' -f1)
Original file line number Diff line number Diff line change 17
17
:mod:`hyper` -- Nova support for Hyper Hypervisor to run Docker containers
18
18
==========================================================================
19
19
"""
20
- from novadocker .virt .hyper import driver
20
+ from novahyper .virt .hyper import driver
21
21
22
22
HyperDriver = driver .HyperDriver
Original file line number Diff line number Diff line change 16
16
# under the License.
17
17
18
18
"""
19
- A Docker Hypervisor which allows running Linux Containers instead of VMs.
19
+ A Hyper.sh Hypervisor which allows running Docker Images as VMs.
20
20
"""
21
21
22
22
import os
Original file line number Diff line number Diff line change @@ -50,28 +50,28 @@ def is_server_error(self):
50
50
return 500 <= self .response .status_code < 600
51
51
52
52
53
- class DockerException (Exception ):
53
+ class HyperException (Exception ):
54
54
pass
55
55
56
56
57
57
class NotFound (APIError ):
58
58
pass
59
59
60
60
61
- class InvalidVersion (DockerException ):
61
+ class InvalidVersion (HyperException ):
62
62
pass
63
63
64
64
65
- class InvalidRepository (DockerException ):
65
+ class InvalidRepository (HyperException ):
66
66
pass
67
67
68
68
69
- class InvalidConfigFile (DockerException ):
69
+ class InvalidConfigFile (HyperException ):
70
70
pass
71
71
72
72
73
- class DeprecatedMethod (DockerException ):
73
+ class DeprecatedMethod (HyperException ):
74
74
pass
75
75
76
- class NullResource (DockerException , ValueError ):
76
+ class NullResource (HyperException , ValueError ):
77
77
pass
You can’t perform that action at this time.
0 commit comments