diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-02-14 10:47:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-02-14 10:47:47 +0000 |
commit | e0bb9bd9c23473364b4b8bf24bdb10a731e833f1 (patch) | |
tree | a413447084ae2e7883d8a81351e9662b60df2f93 /perl-install/install_steps.pm | |
parent | 6ae079ea07e894d8696129caf3dc274a8d07ae88 (diff) | |
download | drakx-backup-do-not-use-e0bb9bd9c23473364b4b8bf24bdb10a731e833f1.tar drakx-backup-do-not-use-e0bb9bd9c23473364b4b8bf24bdb10a731e833f1.tar.gz drakx-backup-do-not-use-e0bb9bd9c23473364b4b8bf24bdb10a731e833f1.tar.bz2 drakx-backup-do-not-use-e0bb9bd9c23473364b4b8bf24bdb10a731e833f1.tar.xz drakx-backup-do-not-use-e0bb9bd9c23473364b4b8bf24bdb10a731e833f1.zip |
(afterInstallPackages): add user in group usb
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 9075931f8..5b70e65f7 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -416,6 +416,7 @@ Consoles 1,3,4,7 may also contain interesting information"; } my $msec = "$o->{prefix}/etc/security/msec"; + substInFile { s/^usb\n//; $_ .= "usb\n" if eof } "$msec/group.conf" if -d $msec; substInFile { s/^xgrp\n//; $_ .= "xgrp\n" if eof } "$msec/group.conf" if -d $msec; substInFile { s/^audio\n//; $_ .= "audio\n" if eof } "$msec/group.conf" if -d $msec; substInFile { s/^cdrom\n//; $_ .= "cdrom\n" if eof } "$msec/group.conf" if -d $msec; |