summaryrefslogtreecommitdiffstats
path: root/move/move.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-11-25 18:20:40 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-11-25 18:20:40 +0000
commita8aa14dc78f93c4e538bcbf6bbf25497fc7403cb (patch)
tree104e7ff1c5fbc97cf022edf0f15b79fe4375dde5 /move/move.pm
parentf7725902938ce798940440b64c2bd0050d1bd482 (diff)
downloaddrakx-a8aa14dc78f93c4e538bcbf6bbf25497fc7403cb.tar
drakx-a8aa14dc78f93c4e538bcbf6bbf25497fc7403cb.tar.gz
drakx-a8aa14dc78f93c4e538bcbf6bbf25497fc7403cb.tar.bz2
drakx-a8aa14dc78f93c4e538bcbf6bbf25497fc7403cb.tar.xz
drakx-a8aa14dc78f93c4e538bcbf6bbf25497fc7403cb.zip
prepare for stripped down version
Diffstat (limited to 'move/move.pm')
-rw-r--r--move/move.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/move/move.pm b/move/move.pm
index 766a20acf..633dab83c 100644
--- a/move/move.pm
+++ b/move/move.pm
@@ -13,6 +13,8 @@ use lang;
use Digest::MD5 qw(md5_hex);
my @ALLOWED_LANGS = qw(en_US fr es it de);
+my $key_disabled;
+
my ($using_existing_user_config, $using_existing_host_config);
my $key_sysconf = '/home/.sysconf';
my $virtual_key_part;
@@ -43,6 +45,7 @@ sub handle_etcfiles {
}
sub handle_virtual_key {
+ return if $key_disabled;
if (my ($device, $file, $options) = cat_('/proc/cmdline') =~ /\bvirtual_key=([^,\s]+),([^,\s]+)(,\S+)?/) {
log::l("using device=$device file=$file as a virtual key with options $options");
my $dir = '/virtual_key_mount';
@@ -122,6 +125,8 @@ sub init {
-d '/lib/modules/' . c::kernel_version() or warn("ERROR: kernel package " . c::kernel_version() . " not installed\n"), c::_exit(1);
+ $key_disabled = -e '/image/move/key_disabled';
+
system('sysctl -w kernel.hotplug="/bin/true"');
modules::load_category('bus/usb');
eval { modules::load('usb-storage', 'sd_mod') };
@@ -197,6 +202,8 @@ sub install2::handleI18NClp {
sub key_parts {
my ($o) = @_;
+ return () if $key_disabled;
+
my @keys = grep { $_->{usb_media_type} && index($_->{usb_media_type}, 'Mass Storage|') == 0 && $_->{media_type} eq 'hd' } @{$o->{all_hds}{hds}};
map_index {
$_->{mntpoint} = $::i ? "/mnt/key$::i" : '/home';
@@ -283,6 +290,8 @@ sub key_installfiles {
sub install2::verifyKey {
my ($o) = $::o;
+ log::l("automatic transparent key support is disabled"), return if $key_disabled;
+
while (cat_('/proc/mounts') !~ m|\s/home\s|) {
$o->ask_okcancel_({ title => N("Need a key to save your data"),