11 lines
104 B
Bash
Executable file
11 lines
104 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
db_input low iproute2/setcaps || true
|
|
db_go
|
|
|
|
exit 0
|