diff options
-rw-r--r-- | urpm/args.pm | 16 |
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')
1 files changed, 4 insertions, 0 deletions
|