From 38b4da9360d1abfc4e9767ad15076dd3a0960dfc Mon Sep 17 00:00:00 2001 From: spwhitton Date: Thu, 18 Apr 2019 20:58:35 +0000 Subject: Added a comment: patches submitted --- .../comment_9_9d1cf538e0b1f560bac9b031b892a68c._comment | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/todo/Debootstrap_module_should_respect_a_configured_Apt.proxy/comment_9_9d1cf538e0b1f560bac9b031b892a68c._comment (limited to 'doc/todo') diff --git a/doc/todo/Debootstrap_module_should_respect_a_configured_Apt.proxy/comment_9_9d1cf538e0b1f560bac9b031b892a68c._comment b/doc/todo/Debootstrap_module_should_respect_a_configured_Apt.proxy/comment_9_9d1cf538e0b1f560bac9b031b892a68c._comment new file mode 100644 index 00000000..75f6afd5 --- /dev/null +++ b/doc/todo/Debootstrap_module_should_respect_a_configured_Apt.proxy/comment_9_9d1cf538e0b1f560bac9b031b892a68c._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="spwhitton" + avatar="http://cdn.libravatar.org/avatar/9c3f08f80e67733fd506c353239569eb" + subject="patches submitted" + date="2019-04-18T20:58:35Z" + content=""" +I've just mailed patches addressing this to Joey. +"""]] -- cgit v1.2.3 From f8c71a10571dd50986eecc63f687e7e47a87cf4f Mon Sep 17 00:00:00 2001 From: spwhitton Date: Sat, 18 May 2019 19:32:58 +0000 Subject: post TODO --- doc/todo/virtio-fs_image_type_for_Propellor.Property.Libvirt.mdwn | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 doc/todo/virtio-fs_image_type_for_Propellor.Property.Libvirt.mdwn (limited to 'doc/todo') diff --git a/doc/todo/virtio-fs_image_type_for_Propellor.Property.Libvirt.mdwn b/doc/todo/virtio-fs_image_type_for_Propellor.Property.Libvirt.mdwn new file mode 100644 index 00000000..841a2c9f --- /dev/null +++ b/doc/todo/virtio-fs_image_type_for_Propellor.Property.Libvirt.mdwn @@ -0,0 +1,3 @@ +Seems that [the new virtio-fs](https://lwn.net/Articles/788333/) can be used for [the root filesystem of a libvirt VM](https://virtio-fs.gitlab.io/howto-boot.html). That would allow propellor to keep updating the filesystem as it would just be a chroot on the KVM host, rather than an opaque image file. + +--spwhitton -- cgit v1.2.3 From b8570d735d1ba52ee9c6d8bb1f93d5f9608c34c1 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 29 May 2019 18:46:25 +0000 Subject: --- doc/todo/dhcp_support_for_Propellor.Property.Libvirt.mdwn | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 doc/todo/dhcp_support_for_Propellor.Property.Libvirt.mdwn (limited to 'doc/todo') diff --git a/doc/todo/dhcp_support_for_Propellor.Property.Libvirt.mdwn b/doc/todo/dhcp_support_for_Propellor.Property.Libvirt.mdwn new file mode 100644 index 00000000..dd1a80d9 --- /dev/null +++ b/doc/todo/dhcp_support_for_Propellor.Property.Libvirt.mdwn @@ -0,0 +1,14 @@ +I'd like a convenient way to add dhcp info for libvirt guests (to libvirt's internal dhcp server). + +I'm thinking something along the lines of + + Libvirt.dhcp "default" (MAC "52:54:00:00:00:01") (IPv4 "192.168.122.31") + +where I guess the MAC (or a better name?) has to be defined. "default" is the libvirt network name. +That property (and the undo) would translate into some call to "virsh net-update". + +This presumably needs a way to assign a matching MAC to the guest. We could maybe provide a convenience API that did both to avoid mismatches. + +I don't so far see a nice way to update the mac address on the guest. There is a --network mac= for virt-install, so maybe an optional parameter for defined? I guess it needs to be different function, called by defined to avoid breaking API? + + -- cgit v1.2.3