13 lines
122 B
Bash
Executable File
13 lines
122 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
systemd-hwdb --usr update || true
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
|