12 lines
213 B
Plaintext
12 lines
213 B
Plaintext
|
#!/bin/bash
|
||
|
# Post-installation script (run on USER'S system after installing the
|
||
|
# main rEFInd package)
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ -f /usr/share/debconf/confmodule ] ; then
|
||
|
. /usr/share/debconf/confmodule
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|