Skip to content

Commit

Permalink
feat: add --offline argument to force an offline configuration. close #…
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed May 12, 2024
1 parent d01011a commit dc30cc5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions quickemu
Original file line number Diff line number Diff line change
Expand Up @@ -1421,6 +1421,7 @@ function usage() {
echo " --fullscreen : Starts VM in full screen mode (Ctl+Alt+f to exit)"
echo " --ignore-msrs-always : Configure KVM to always ignore unhandled machine-specific registers"
echo " --kill : Kill the VM process if it is running"
echo " --offline : Override all network settings and start the VM offline"
echo " --screen <screen> : Use specified screen to determine the window size."
echo " --screenpct <percent> : Percent of fullscreen for VM if --fullscreen is not specified."
echo " --shortcut : Create a desktop shortcut"
Expand Down Expand Up @@ -1690,6 +1691,9 @@ else
-kill|--kill)
KILL_VM=1
shift;;
-offline|--offline)
network="none"
shift;;
-screen|--screen)
SCREEN="${2}"
shift
Expand Down

0 comments on commit dc30cc5

Please sign in to comment.