This website works better with JavaScript.
Explore
Help
Sign In
mirror
/
kvm-install-vm
mirror of
https://github.com/giovtorres/kvm-install-vm.git
Watch
1
Star
0
Fork
You've already forked kvm-install-vm
0
Code
Issues
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160
Commits
3
Branches
53
Tags
1.5 MiB
Branch:
rust
main
rust
shellcheck-fixes
0.1
0.2
0.3
0.4
0.5
0.6
0.7
0.8
0.9
1.0.0
1.0.1
1.0.2
1.1.0
1.1.1
1.2.0
1.2.1
1.2.10
1.2.11
1.2.12
1.2.13
1.2.2
1.2.3
1.2.4
1.2.7
1.2.8
1.2.9
1.3.0
1.3.1
1.3.2
1.3.3
1.3.4
1.4.0
1.4.1
1.4.2
1.4.3
1.4.4
1.4.5
v0.10.0
v0.10.1
v0.10.10
v0.10.11
v0.10.12
v0.10.13
v0.10.14
v0.10.2
v0.10.3
v0.10.4
v0.10.5
v0.10.6
v0.10.7
v0.10.8
v0.10.9
v0.9.1
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'rust'
${ noResults }
kvm-install-vm
/
scripts
/
bash
/
tests
/
vmdir.bash
6 lines
76 B
Raw
Permalink
Normal View
History
Unescape
Escape
Seperate the location of image and vm directories Having seperate directories makes it easier to work multiple images and vms. This change keeps the current image storage location as ~/virt/images but moves the domains under the ~/virt/vms directory. Also adds the -L switch to customize the VM storage location.
8 years ago
VMDIR
=
${
HOME
}
/virt/vms
Some new customization options and a fix for layer 2 bridge interfaces (#11) * Add check for bridge status file and assume it's a layer 2 bridge if it doesn't exist * Move known_hosts check inside if condition * Formatting * Initial commit for custom runcmd support * Add r as supported option * Add option for graphics type * Quotes * No autoport with this version of virt-install * Add listen * Add option to customize additional user * Custom port support for graphical console * Fix typos * Add verbosity to help * Fix README text * Unnecessary quotes * Add workaround for VNC port number * Load IMAGEDIR for bats tests, increase sleep before hostname resolution test, fix DISKDIR used by attach-disk function * Make VM name unique to avoid issues with stale libvirt-nss hostname resolution * Only set VMNAME if it's not already set * Missing quote * Export VMNAME * Increase sleep to 45 seconds * Add centos user to ssh command * Fix description of attach-disk * Change user-data to multipart MIME archive to allow inclusion of a shell script instead of additional runcmd items fs * Fix boundary * Remove comment line I never filled in * Fix typo * Fix typo and missing colon * Add autostart option * Handle output of autostart * Redirect * Use outputn * Add -a to valid options
8 years ago
if
[
-f ~/.kivrc
]
then
source
${
HOME
}
/.kivrc
fi