diff --git a/VERSION b/VERSION index 62eccae..ad22619 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.23.1 +2.24.0 diff --git a/package/yast2-firstboot.changes b/package/yast2-firstboot.changes index 2f437bc..4e710bf 100644 --- a/package/yast2-firstboot.changes +++ b/package/yast2-firstboot.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 4 11:45:56 UTC 2013 - jreidinger@suse.com + +- remove obsolete client product_start +- 2.24.0 + ------------------------------------------------------------------- Thu Feb 21 12:50:00 CET 2013 - jsuchome@suse.cz diff --git a/src/product_start.ycp b/src/product_start.ycp deleted file mode 100644 index 671b84b..0000000 --- a/src/product_start.ycp +++ /dev/null @@ -1,83 +0,0 @@ -/* ------------------------------------------------------------------------------ - * Copyright (c) 2012 Novell, Inc. All Rights Reserved. - * - * - * This program is free software; you can redistribute it and/or modify it under - * the terms of version 2 of the GNU General Public License as published by the - * Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along with - * this program; if not, contact Novell, Inc. - * - * To contact Novell about this file by physical or electronic mail, you may find - * current contact information at www.novell.com. - * ------------------------------------------------------------------------------ - */ - -/** - * Maintainer: Jiri Srain - * - * $Id$ - */ -{ - textdomain "firstboot"; - - import "Mode"; - import "Stage"; - import "ProductControl"; - import "Wizard"; - import "Report"; - import "Directory"; - - string control = ""; - string start_dir = ""; - if (size (WFM::Args ()) > 0 && (is (WFM::Args(0), string ) && is(WFM::Args(1), string))) - { - control = (string)WFM::Args(0); - start_dir = (string)WFM::Args(1); - if (SCR::Read(.target.size, control )<= 0 ) - { - y2error("file %1 empty or not found", control); - return `abort; - } - } - - - Directory::custom_workflow_dir = start_dir; - - - Mode::SetMode("installation"); - y2milestone("Current mode: %1", Mode::mode()); - - ProductControl::custom_control_file = control; - if (!ProductControl::Init()) - { - y2error("control file %1 not found", ProductControl::custom_control_file ); - return `abort; - } - - Wizard::OpenNextBackStepsDialog(); - - string wizard_mode = Mode::test () ? "installation" : Mode::mode (); - - list stage_mode = [$["stage": "normal", "mode": wizard_mode ]]; - ProductControl::AddWizardSteps(stage_mode); - - // Do log Report messages by default (#180862) - Report::LogMessages(true); - Report::LogErrors(true); - Report::LogWarnings(true); - - - symbol ret = ProductControl::Run(); - - Pkg::SourceFinishAll(); - Pkg::TargetFinish(); - - UI::CloseDialog(); - return ret; -}