aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/search/sphinx/ssh:/git@git.mageia.org
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-07-03 12:44:33 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-07-03 12:44:33 +0200
commita0e00889d1a03804625522405824ac8cbce15c22 (patch)
tree800d813de85eb59b7dc9b8922322c7c680ecfc97 /phpBB/phpbb/search/sphinx/ssh:/git@git.mageia.org
parentb0a3f2dc8f528526d02b04835bb6bda92421fe4b (diff)
parent7ef983b4267db3a71c849a62f91fa1b0a94a78bb (diff)
downloadforums-a0e00889d1a03804625522405824ac8cbce15c22.tar
forums-a0e00889d1a03804625522405824ac8cbce15c22.tar.gz
forums-a0e00889d1a03804625522405824ac8cbce15c22.tar.bz2
forums-a0e00889d1a03804625522405824ac8cbce15c22.tar.xz
forums-a0e00889d1a03804625522405824ac8cbce15c22.zip
Merge pull request #2670 from Nicofuma/ticket/12781
[ticket/12781] Template regex for IF catch too many things * Nicofuma/ticket/12781: [ticket/12781] Add tests [ticket/12781] Template regex for IF catch too many things
Diffstat (limited to 'phpBB/phpbb/search/sphinx/ssh:/git@git.mageia.org')
0 files changed, 0 insertions, 0 deletions
software/drakx/snapshot/drakx-8a23e0f29d13743fb634ba02310f78dda17e76e1.tar'>drakx-8a23e0f29d13743fb634ba02310f78dda17e76e1.tar
drakx-8a23e0f29d13743fb634ba02310f78dda17e76e1.tar.gz
drakx-8a23e0f29d13743fb634ba02310f78dda17e76e1.tar.bz2
drakx-8a23e0f29d13743fb634ba02310f78dda17e76e1.tar.xz
drakx-8a23e0f29d13743fb634ba02310f78dda17e76e1.zip
do not try to add media to /etc/fstab (#49621)
Diffstat
-rw-r--r--perl-install/NEWS2
-rwxr-xr-xperl-install/standalone/service_harddrake13
2 files changed, 4 insertions, 11 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 8900c2a8c..7cb0a9b18 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- harddrake service:
+ o do not try to add media to /etc/fstab (#49621)
- harddrake:
o list card readers as system components instead of unknows devices
o when device has no description, use vendor string
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index e5af418f4..deaea0b8d 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -149,17 +149,8 @@ foreach my $hw_class (@harddrake::data::tree) {
next if $Ident eq 'MOUSE' && $kernel_major ne $previous_kernel_config{KERNEL} && $cfg{"DETECT_$Ident"} ne 'force';
- my @configurator_pool;
- if (harddrake::data::is_auto_configurable_class($Ident)) {
- foreach my $device (@ID{@added}) {
- push @configurator_pool, harddrake::data::set_media_auto_configurator($device);
- }
- foreach my $device (@$oldconfig{@was_removed}) {
- push @configurator_pool, harddrake::data::set_media_remover($device);
- }
- } else {
- @configurator_pool = $configurator;
- }
+ my @configurator_pool = $configurator;
+
if ($Ident eq "AUDIO") {
# automatic sound slots configuration
rm_rf("/etc/asound.state") if -e "/etc/asound.state";