Displaying 5 results from an estimated 5 matches for "unitfil".
Did you mean:
unitfile
2016 Aug 03
2
[PATCH] firstboot: rename systemd service file
...(-)
diff --git a/customize/firstboot.ml b/customize/firstboot.ml
index f1e5807..6d7b065 100644
--- a/customize/firstboot.ml
+++ b/customize/firstboot.ml
@@ -122,10 +122,27 @@ WantedBy=default.target
*)
let unitdir = "/usr/lib/systemd/system" in
g#mkdir_p unitdir;
- let unitfile = sprintf "%s/firstboot.service" unitdir in
+ let unitfile = sprintf "%s/virt-sysprep-firstboot.service" unitdir in
g#write unitfile firstboot_service;
g#mkdir_p "/etc/systemd/system/default.target.wants";
- g#ln_sf unitfile "/etc/systemd/system/d...
2016 Aug 03
0
Re: [PATCH] firstboot: rename systemd service file
...b/customize/firstboot.ml
> index f1e5807..6d7b065 100644
> --- a/customize/firstboot.ml
> +++ b/customize/firstboot.ml
> @@ -122,10 +122,27 @@ WantedBy=default.target
> *)
> let unitdir = "/usr/lib/systemd/system" in
> g#mkdir_p unitdir;
> - let unitfile = sprintf "%s/firstboot.service" unitdir in
> + let unitfile = sprintf "%s/virt-sysprep-firstboot.service" unitdir in
> g#write unitfile firstboot_service;
> g#mkdir_p "/etc/systemd/system/default.target.wants";
> - g#ln_sf unitfile "/...
2016 Aug 04
3
[PATCH v2 1/2] firstboot: rename systemd and sysvinit
...intf "\
[Unit]
-Description=virt-sysprep firstboot service
+Description=libguestfs firstboot service
After=network.target
Before=prefdm.service
@@ -122,10 +122,27 @@ WantedBy=default.target
*)
let unitdir = "/usr/lib/systemd/system" in
g#mkdir_p unitdir;
- let unitfile = sprintf "%s/firstboot.service" unitdir in
+ let unitfile = sprintf "%s/guestfs-firstboot.service" unitdir in
g#write unitfile firstboot_service;
g#mkdir_p "/etc/systemd/system/default.target.wants";
- g#ln_sf unitfile "/etc/systemd/system/defaul...
2017 Jul 16
4
[PATCH 0/2] customize: firstboot: Install firstboot scripts in multi-user.target (RHBZ#1469655).
See:
https://bugzilla.redhat.com/show_bug.cgi?id=1469655
https://github.com/systemd/systemd/issues/6334
https://lists.freedesktop.org/archives/systemd-devel/2017-July/039325.html
2017 Jul 17
6
[PATCH v2 0/4] customize: firstboot: Install firstboot scripts in multi-user.target (RHBZ#1469655).
v1: https://www.redhat.com/archives/libguestfs/2017-July/msg00127.html
v2:
- Remove /etc/systemd/system/default.target.wants/guestfs-firstboot.service
link as well.
- Use multi-user.target for virt-p2v as well.
Rich.