mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 09:10:04 +01:00
12 lines
187 B
Bash
12 lines
187 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
ls /run/udev/rules.d/*litest*.rules 2>/dev/null
|
||
|
|
if [[ $? -eq 0 ]]; then
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
ls /etc/udev/hwdb.d/*litest*REMOVEME*.hwdb 2>/dev/null
|
||
|
|
if [[ $? -eq 0 ]]; then
|
||
|
|
exit 1
|
||
|
|
fi
|