-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
used ruff (with indent-size = 2) to reformat code
- Loading branch information
Showing
16 changed files
with
1,747 additions
and
1,570 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
from vagd.box import Box | ||
from vagd.virts import * | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import vagd.cli as cli | ||
|
||
if __name__ == '__main__': | ||
cli.start() | ||
if __name__ == "__main__": | ||
cli.start() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,24 @@ | ||
class Box: | ||
""" constants class for recommended images and boxes """ | ||
VAGRANT_JAMMY64 = 'ubuntu/jammy64' | ||
VAGRANT_FOCAL64 = 'ubuntu/focal64' | ||
VAGRANT_BIONIC64 = 'ubuntu/bionic64' | ||
VAGRANT_XENIAL64 = 'ubuntu/xenial64' | ||
QEMU_NOBLE = 'https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img' | ||
QEMU_JAMMY = 'https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img' | ||
QEMU_FOCAL = 'https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img' | ||
QEMU_BIONIC = 'https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-amd64.img' | ||
QEMU_XENIAL = 'https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img' | ||
QEMU_JAMMY_ARM = 'https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-arm64.img' | ||
DOCKER_NOBLE = 'ubuntu:noble' | ||
DOCKER_JAMMY = 'ubuntu:jammy' | ||
DOCKER_FOCAL = 'ubuntu:focal' | ||
DOCKER_BIONIC = 'ubuntu:bionic' | ||
DOCKER_XENIAL = 'ubuntu:xenial' | ||
DOCKER_I386_FOCAL = 'i386/ubuntu:focal' | ||
DOCKER_I386_BIONIC = 'i386/ubuntu:bionic' | ||
DOCKER_I386_XENIAL = 'i386/ubuntu:xenial' | ||
DOCKER_ALPINE_316 = 'alpine:3.16.6' | ||
"""constants class for recommended images and boxes""" | ||
|
||
VAGRANT_JAMMY64 = "ubuntu/jammy64" | ||
VAGRANT_FOCAL64 = "ubuntu/focal64" | ||
VAGRANT_BIONIC64 = "ubuntu/bionic64" | ||
VAGRANT_XENIAL64 = "ubuntu/xenial64" | ||
|
||
QEMU_NOBLE = "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img" | ||
QEMU_JAMMY = "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img" | ||
QEMU_FOCAL = "https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img" | ||
QEMU_BIONIC = "https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-amd64.img" | ||
QEMU_XENIAL = "https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img" | ||
QEMU_JAMMY_ARM = "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-arm64.img" | ||
|
||
DOCKER_NOBLE = "ubuntu:noble" | ||
DOCKER_JAMMY = "ubuntu:jammy" | ||
DOCKER_FOCAL = "ubuntu:focal" | ||
DOCKER_BIONIC = "ubuntu:bionic" | ||
DOCKER_XENIAL = "ubuntu:xenial" | ||
DOCKER_I386_FOCAL = "i386/ubuntu:focal" | ||
DOCKER_I386_BIONIC = "i386/ubuntu:bionic" | ||
DOCKER_I386_XENIAL = "i386/ubuntu:xenial" | ||
DOCKER_ALPINE_316 = "alpine:3.16.6" |
Oops, something went wrong.