summaryrefslogtreecommitdiffstats
path: root/perl-install/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'urpm/args.pm')
-rw-r--r--urpm/args.pm16
1 files changed, 13 insertions, 3 deletions
diff --git a/urpm/args.pm b/urpm/args.pm
index bff9bded..38ead349 100644
--- a/urpm/args.pm
+++ b/urpm/args.pm
@@ -205,13 +205,13 @@ my %options_spec = (
f => sub { $::full = 1 },
'F=s' => sub { $::separator = $_[1] },
'e=s' => sub { $::expr .= "($_[1])" },
- a => sub { $::expr .= ' && ' },
- o => sub { $::expr .= ' || ' },
+ a => sub { add_urpmf_binary_op('&&') },
+ o => sub { add_urpmf_binary_op('||') },
'<>' => sub {
my $p = shift;
if ($p =~ /^-?([!()])$/) {
# This is for -! -( -)
- $::expr .= $1;
+ add_urpmf_unary_op($1);
}
elsif ($p =~ /^--?(.+)/) {
# unrecognized option
@@ -354,6 - adduserdrake, finish-install:
o create only one user o fix checking user info (#32517) - install: o merge root password step and create user step (new setRootPassword_addUser step name, but still handle addUser setRootPassword in interactiveSteps for auto_installs) o fix checking user creation info (#32517) o allow to create only one user per default, but add an entry in summary to create more users o authentication method is not configurable anymore for now. should we add it to summary?
Diffstat (limited to 'perl-install/NEWS')
-rw-r--r--perl-install/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 9155d6b0c..9544728ad 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,7 @@
+- adduserdrake, finish-install:
+ o create only one user
+ o fix checking user info (#32517)
+
Version 10.4.167 - 11 August 2007, by Pascal "Pixel" Rigaux
- fix plural translations (#32505)