From 859e1eaeb98aa675cb946eb360ff480471db0b80 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Thu, 24 Jan 2013 18:02:32 +0100 Subject: wixl: add ServiceControl and ServiceInstall table --- tools/wixl/builder.vala | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tools/wixl/builder.vala') diff --git a/tools/wixl/builder.vala b/tools/wixl/builder.vala index 69c5e19..13fc1b3 100644 --- a/tools/wixl/builder.vala +++ b/tools/wixl/builder.vala @@ -148,6 +148,13 @@ namespace Wixl { } if (db.table_remove_file.records.length () > 0) add (MSIDefault.Action.RemoveFiles); + if (db.table_service_control.records.length () > 0) { + add (MSIDefault.Action.StartServices); + add (MSIDefault.Action.StopServices); + add (MSIDefault.Action.DeleteServices); + } + if (db.table_service_install.records.length () > 0) + add (MSIDefault.Action.InstallServices); table.add_sorted_actions (); // InstallUISequence -- cgit