You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
206 B
10 lines
206 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
# for udev
|
||
|
ln -sf /proc/mounts /etc/mtab
|
||
|
|
||
|
# pam_console_apply is harmful during install
|
||
|
find /etc/udev/rules.d/ -type f -print0 |
|
||
|
xargs -r0 fgrep -Zl pam_console_apply -- |
|
||
|
xargs -r0 rm -fv --
|