summaryrefslogtreecommitdiff
path: root/src/util.rs
AgeCommit message (Collapse)AuthorFilesLines
2021-11-10feat: check that virtual network names are syntactically correctLars Wirzenius1-0/+48
Sponsored-by: author
2021-11-01chore: fix code formattingLars Wirzenius1-1/+3
2021-10-16feat: allow ~user/ in path names, not just ~/Lars Wirzenius1-18/+10
Add the home-dir crate as a dependency for tilde expansion. Sponsored-by: author
2021-08-06chore: fix small problems found by clippyLars Wirzenius1-1/+1
Sponsored-by: author
2021-03-25feat: allow ~/ in config, specification filesLars Wirzenius1-0/+34
2021-03-24refactor: when starting, stopping do all VMs at onceLars Wirzenius1-0/+2
2021-03-14fix: VMs can be restartedLars Wirzenius1-0/+15
Previously, the temporary file for the cloud-init configuration ISO was left attached to the VM. This meant the VM couldn't be turned off and back on again: the temporary no longer existed. Now we detach the ISO file after the VM has booted. As a side effect, vmadm has gained start and shutdown subcommands, so that the fix can be tested.