summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-05-08 07:58:39 +0000
committerThierry Vignaud <tv@mandriva.org>2008-05-08 07:58:39 +0000
commitfb1bfb7d9640cbc84bd12f4fb0990dc9d54cacd0 (patch)
treedd9814477325ab74e59e7c73904d8262d383d8ce
parentfcd8ec1f59fe423784039a7828a765dbffef5559 (diff)
downloadmgaonline-fb1bfb7d9640cbc84bd12f4fb0990dc9d54cacd0.tar
mgaonline-fb1bfb7d9640cbc84bd12f4fb0990dc9d54cacd0.tar.gz
mgaonline-fb1bfb7d9640cbc84bd12f4fb0990dc9d54cacd0.tar.bz2
mgaonline-fb1bfb7d9640cbc84bd12f4fb0990dc9d54cacd0.tar.xz
mgaonline-fb1bfb7d9640cbc84bd12f4fb0990dc9d54cacd0.zip
(installUpdates) run MandrivaUpdate with --no-splash option in order
to skip splash screen (#40366)
-rw-r--r--NEWS4
-rwxr-xr-xmdkapplet2
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index e0a7422f..095478ec 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+- mdkapplet:
+ o run MandrivaUpdate with --no-splash option in order to skip splash
+ screen (#40366)
+
Version 2.39 - 21 March 2008, Thierry Vignaud
- mdkapplet:
diff --git a/mdkapplet b/mdkapplet
index 3ac861e0..ac1f3449 100755
--- a/mdkapplet
+++ b/mdkapplet
@@ -281,7 +281,7 @@ sub installUpdates() {
return if $mdv_update_pid;
my $oldmd5 = $release <= 10.2 ? mdkonline::md5file($binfile) : common::md5file($binfile);
logIt(N_("Launching MandrivaUpdate\n"));
- $mdv_update_pid = fork_exec('MandrivaUpdate', '--no-media-update', '--no-confirmation');
+ $mdv_update_pid = fork_exec('MandrivaUpdate', '--no-media-update', '--no-confirmation', '--no-splash');
my $newmd5 = $release <= 10.2 ? mdkonline::md5file($binfile) : common::md5file($binfile);
restart_applet() if $newmd5 ne $oldmd5;
silentCheck(); gtkflush();