11 lines
129 B
Bash
Executable File
11 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Abort if any command returns an error value
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
# we do nothing here
|
|
|
|
exit 0
|