summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2015-12-07 16:40:42 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2015-12-07 16:40:42 +0000
commit99fc5997bfd14deb0e8052cb6ca348132ca25b30 (patch)
tree65c53b20a32a30c1963f8d73e1a1d7d7d5c2bd45 /etc
parent4c69f3e7de850c57bddfcb5a8e878f21787aaf14 (diff)
/var/vm is a terrible idea, the images are filled on demand, they are
not backed by blocks until used. So I'll use /home/vm instead. Pointed out by deraadt@
Diffstat (limited to 'etc')
-rw-r--r--etc/examples/vm.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/examples/vm.conf b/etc/examples/vm.conf
index 717a224c166..2948dc3820f 100644
--- a/etc/examples/vm.conf
+++ b/etc/examples/vm.conf
@@ -1,4 +1,4 @@
-# $OpenBSD: vm.conf,v 1.1 2015/12/07 13:58:48 reyk Exp $
+# $OpenBSD: vm.conf,v 1.2 2015/12/07 16:40:41 reyk Exp $
#
# Macros
@@ -15,7 +15,7 @@ vm "openbsd.vm" {
kernel $sets "bsd.rd"
# First disk from 'vmctl create "/var/vm/OpenBSD.img" -s 4G'
- disk "/var/vm/OpenBSD.img"
+ disk "/home/vm/OpenBSD.img"
# Second disk from OpenBSD contains the install sets
disk $sets "install58.fs"
@@ -30,5 +30,5 @@ vm "vm1.example.com" {
memory 1G
interfaces 2
kernel "/bsd"
- disk "/var/vm/vm1-disk.img"
+ disk "/home/vm/vm1-disk.img"
}