Displaying 6 results from an estimated 6 matches for "augeas_device_pattern".
Did you mean:
augeas_device_patterns
2016 Aug 15
2
[PATCH v2] v2v: factor out bootloader handling
...ree Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *)
+
+open Printf
+
+open Common_gettext.Gettext
+open Common_utils
+
+open Types
+open Utils
+
+module G = Guestfs
+
+class virtual bootloader = object
+ method virtual name : string
+ method virtual augeas_device_patterns : string list
+ method virtual list_kernels : unit -> string list
+ method virtual set_default_kernel : string -> unit
+ method set_augeas_configuration () = false
+ method virtual configure_console : unit -> unit
+ method virtual remove_console : unit -> unit
+ method update ()...
2016 Aug 26
2
[PATCH] v2v: Use unitless methods for methods which don't change the internal state.
...*)
filter_map (
diff --git a/v2v/linux_bootloaders.ml b/v2v/linux_bootloaders.ml
index d12edf8..f41947e 100644
--- a/v2v/linux_bootloaders.ml
+++ b/v2v/linux_bootloaders.ml
@@ -29,7 +29,7 @@ module G = Guestfs
class virtual bootloader = object
method virtual name : string
method virtual augeas_device_patterns : string list
- method virtual list_kernels : unit -> string list
+ method virtual list_kernels : string list
method virtual set_default_kernel : string -> unit
method set_augeas_configuration () = false
method virtual configure_console : unit -> unit
@@ -69,7 +69,7 @@ object...
2015 Nov 20
0
[PATCH] v2v: factor out bootloader handling
...ree Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *)
+
+open Printf
+
+open Common_gettext.Gettext
+open Common_utils
+
+open Types
+open Utils
+
+module G = Guestfs
+
+class virtual bootloader = object
+ method virtual name : string
+ method virtual augeas_device_patterns : string list
+ method virtual list_kernels : unit -> string list
+ method virtual set_default : string -> unit
+ method set_augeas_configuration () = false
+ method virtual configure_console : unit -> unit
+ method virtual remove_console : unit -> unit
+ method update () = ()
+e...
2016 Aug 15
0
Re: [PATCH v2] v2v: factor out bootloader handling
...+++++++++
> v2v/bootloaders.mli | 44 +++++++
Is this really "bootloaders"? It's more like "linux_bootloaders",
unless this might one day be extended to include NTLDR.
> +class virtual bootloader = object
> + method virtual name : string
> + method virtual augeas_device_patterns : string list
> + method virtual list_kernels : unit -> string list
> + method virtual set_default_kernel : string -> unit
> + method set_augeas_configuration () = false
> + method virtual configure_console : unit -> unit
> + method virtual remove_console : unit ->...
2016 Aug 15
1
Re: [PATCH v2] v2v: factor out bootloader handling
...is really "bootloaders"? It's more like "linux_bootloaders",
> unless this might one day be extended to include NTLDR.
OK, make sense -- I will rename it.
> > +class virtual bootloader = object
> > + method virtual name : string
> > + method virtual augeas_device_patterns : string list
> > + method virtual list_kernels : unit -> string list
> > + method virtual set_default_kernel : string -> unit
> > + method set_augeas_configuration () = false
> > + method virtual configure_console : unit -> unit
> > + method virtual rem...
2016 Aug 25
2
[PATCH v2] v2v: factor out bootloader handling
...ot;;
- "/files/etc/default/grub/GRUB_CMDLINE_LINUX";
- "/files/etc/default/grub/GRUB_CMDLINE_LINUX_DEFAULT";
- "/files/boot/grub2/device.map/*[label() != \"#comment\"]";
] in
+ (* Bootloader config *)
+ let paths = paths @ bootloader#augeas_device_patterns in
(* Which of these paths actually exist? *)
let paths =
@@ -1393,9 +1126,8 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps =
if !changed then (
g#aug_save ();
- (* If it's grub2, we have to regenerate the config files. *)
- if...