summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-11-20 19:54:00 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-11-20 19:54:00 +0000
commitc942786c119d41faaa03357ddeb5bea338867727 (patch)
treec905961ad62da784b76f39df7b9c1a01944d59f2 /perl-install/standalone
parent30db14621a97a66eb3bf6660621e558ecaf41e85 (diff)
downloaddrakx-backup-do-not-use-c942786c119d41faaa03357ddeb5bea338867727.tar
drakx-backup-do-not-use-c942786c119d41faaa03357ddeb5bea338867727.tar.gz
drakx-backup-do-not-use-c942786c119d41faaa03357ddeb5bea338867727.tar.bz2
drakx-backup-do-not-use-c942786c119d41faaa03357ddeb5bea338867727.tar.xz
drakx-backup-do-not-use-c942786c119d41faaa03357ddeb5bea338867727.zip
no_comment
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-xperl-install/standalone/XFdrake59
-rwxr-xr-xperl-install/standalone/diskdrake66
2 files changed, 125 insertions, 0 deletions
diff --git a/perl-install/standalone/XFdrake b/perl-install/standalone/XFdrake
new file mode 100755
index 000000000..46c5b6f63
--- /dev/null
+++ b/perl-install/standalone/XFdrake
@@ -0,0 +1,59 @@
+#!/usr/bin/perl
+
+# XFdrake
+# Copyright (C) 1999 MandrakeSoft (pixel@linux-mandrake.com)
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+use lib qw(/usr/lib/libDrakX .);
+
+use common qw(:file);
+use Xconfigurator;
+use Xconfig;
+
+local $_ = join '', @ARGV;
+
+/-h/ and die "usage: XFdrake [--beginner] [--expert] [--auto] [--noauto] [--skiptest] [--testing]\n";
+
+$::beginner = /--beginner/;
+$::expert = /--expert/;
+$::auto = /--auto/;
+$::noauto = /--noauto/;
+$::skiptest = /--skiptest/;
+$::testing = /--testing/;
+$::isStandalone = 1;
+
+my $hasX = do { `xtest`; $? == 0 };
+
+my $in; if ($hasX) {
+ require 'interactive_gtk.pm';
+ $in = interactive_gtk->new;
+} else {
+ *log::l = undef;
+ *log::l = sub {};
+ require 'interactive_newt.pm';
+ $in = interactive_newt->new;
+}
+
+Xconfigurator::main('', Xconfig::getinfo(), $in,
+# sub {
+# use install_any;
+# print "Here\n";
+# my ($X) = glob_("/mnt/disk/XFree86-$_[0]-*") or die "$_[0]'s X server rpm not found";
+# pkgs::install('', [ { name => $_[0], file => $X } ], 1, 0);
+# }
+);
+
+exec 'true' if $hasX; #- workaround for perl-GTK
diff --git a/perl-install/standalone/diskdrake b/perl-install/standalone/diskdrake
new file mode 100755
index 000000000..a3ffafe83
--- /dev/null
+++ b/perl-install/standalone/diskdrake
@@ -0,0 +1,66 @@
+#!/usr/bin/perl
+
+# DiskDrake
+# Copyright (C) 1999 MandrakeSoft (pixel@linux-mandrake.com)
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# 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, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+# DiskDrake uses resize_fat which is a perl rewrite of the work of Andrew
+# Clausen (libresize).
+# DiskDrake is also based upon the libfdisk and the install from Red Hat Software
+
+
+use lib qw(/usr/lib/libDrakX .);
+use common qw(:common :functional);
+use diskdrake;
+use interactive_gtk;
+use detect_devices;
+use fsedit;
+use fs;
+use log;
+
+$::isStandalone = 1;
+#$::expert = 1;
+
+if ($>) {
+ $ENV{PATH} = "/sbin:/usr/sbin:$ENV{PATH}";
+}
+
+
+#if ($ARGV[0] eq '-l') {
+# $@ and print "Error\n";
+# $::expert = 1;
+# print diskdrake::get_info($_, $hds->[0]) foreach fsedit::get_fstab($hds->[0]);
+# exit !$@;
+#}
+my $in = interactive_gtk->new;
+my $hds =
+ catch_cdie { fsedit::hds([ detect_devices::hds() ], {}) }
+ sub {
+ my ($err) = $@ =~ /(.*) at /;
+ $@ =~ /overlapping/ and $in->ask_warn('', $@), return 1;
+ $in->ask_okcancel(_("Error"),
+[_("I can't read your partition table, it's too corrupted for me :(
+I'll try to go on blanking bad partitions"), $err]);
+ };
+
+$SIG{__DIE__} = sub { chomp $_[0]; log::l("ERROR: $_[0]") };
+my $fstab = [ fsedit::get_fstab(@$hds) ];
+
+fs::get_mntpoints_from_fstab($fstab);
+fs::check_mounted($fstab);
+diskdrake::main($hds, {}, $in);
+
+exec "true";