From 13140003a66d5ebd24874bde8ae3edafd92d421a Mon Sep 17 00:00:00 2001 From: Eric Reed Date: Wed, 13 Mar 2013 08:51:33 -0400 Subject: [PATCH] Don't install pismo during update #47 --- .../Updates/ApplicationUpdater.cs | 2 +- MediaBrowser.Installer/MainWindow.xaml.cs | 21 ++++++++++++------- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs b/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs index 00e232e441..7ab5745474 100644 --- a/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs +++ b/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs @@ -24,7 +24,7 @@ namespace MediaBrowser.Common.Implementations.Updates var target = Path.Combine(Path.GetTempPath(), UpdaterExe); var product = app == MBApplication.MBTheater ? "mbt" : "server"; File.Copy(source, target, true); - Process.Start(target, string.Format("product={0} archive=\"{1}\" caller={2}", product, archive, Process.GetCurrentProcess().Id)); + Process.Start(target, string.Format("product={0} archive=\"{1}\" caller={2} pismo=false", product, archive, Process.GetCurrentProcess().Id)); // That's it. The installer will do the work once we exit } diff --git a/MediaBrowser.Installer/MainWindow.xaml.cs b/MediaBrowser.Installer/MainWindow.xaml.cs index eddfdccc72..5ceccdf439 100644 --- a/MediaBrowser.Installer/MainWindow.xaml.cs +++ b/MediaBrowser.Installer/MainWindow.xaml.cs @@ -27,6 +27,7 @@ namespace MediaBrowser.Installer protected string TargetExe = "MediaBrowser.ServerApplication.exe"; protected string FriendlyName = "Media Browser Server"; protected string Archive = null; + protected bool InstallPismo = true; protected string RootPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser-Server"); protected bool SystemClosing = false; @@ -91,6 +92,7 @@ namespace MediaBrowser.Installer } Archive = args.GetValueOrDefault("archive", null); + if (args.GetValueOrDefault("pismo","true") == "false") InstallPismo = false; var product = args.GetValueOrDefault("product", null) ?? ConfigurationManager.AppSettings["product"] ?? "server"; PackageClass = (PackageVersionClass) Enum.Parse(typeof (PackageVersionClass), args.GetValueOrDefault("class", null) ?? ConfigurationManager.AppSettings["class"] ?? "Release"); @@ -250,14 +252,17 @@ namespace MediaBrowser.Installer } // Install Pismo - try - { - InstallPismo(); - } - catch (Exception e) + if (InstallPismo) { - SystemClose("Error Installing Pismo - "+e.GetType().FullName+"\n\n"+e.Message); - return; + try + { + PismoInstall(); + } + catch (Exception e) + { + SystemClose("Error Installing Pismo - "+e.GetType().FullName+"\n\n"+e.Message); + return; + } } // And run @@ -275,7 +280,7 @@ namespace MediaBrowser.Installer } - private void InstallPismo() + private void PismoInstall() { // Kick off the Pismo installer and wait for it to end var pismo = new Process();