Displaying 2 results from an estimated 2 matches for "97cd8a9".
2012 Sep 21
3
[PATCH] sysprep: handle distro specific sysv scripts
...pts exists and can be executed
- add LSB header to avoid insserv warnings later on
- run script only if called with "start"
Update functions, pass only required options.
Signed-off-by: Olaf Hering <olaf at aepfle.de>
diff --git a/sysprep/firstboot.ml b/sysprep/firstboot.ml
index 97cd8a9..719ab38 100644
--- a/sysprep/firstboot.ml
+++ b/sysprep/firstboot.ml
@@ -28,14 +28,35 @@ let firstboot_dir = "/usr/lib/virt-sysprep"
let firstboot_sh = sprintf "\
#!/bin/sh -
+### BEGIN INIT INFO
+# Provides: virt-sysprep
+# Required-Start: $null
+# Should-Start:...
2013 Dec 12
2
Re: [PATCH] sysprep: handle distro specific sysv scripts
...- add LSB header to avoid insserv warnings later on
> - run script only if called with "start"
> Update functions, pass only required options.
>
> Signed-off-by: Olaf Hering <olaf@aepfle.de>
>
> diff --git a/sysprep/firstboot.ml b/sysprep/firstboot.ml
> index 97cd8a9..c5296a1 100644
> --- a/sysprep/firstboot.ml
> +++ b/sysprep/firstboot.ml
> @@ -28,14 +28,35 @@ let firstboot_dir = "/usr/lib/virt-sysprep"
> let firstboot_sh = sprintf "\
> #!/bin/sh -
>
> +### BEGIN INIT INFO
> +# Provides: virt-sysprep
> +# R...