19 lines
520 B
Bash
Executable File
19 lines
520 B
Bash
Executable File
#! /sbin/sh
|
|
#Tag 0x00000f00
|
|
|
|
# Check for uncompleted installation operations
|
|
# "$Revision: 1.5 $"
|
|
|
|
# Check for & execute any uncompleted parts of an installation; this could
|
|
# happen if the inst succeeds but the system comes down abnormally.
|
|
# This must be done while local filesystems are mounted but while few
|
|
# other processes are active. That time is early during startup, or late
|
|
# during shutdown.
|
|
#
|
|
# It is a safe no-op if no installation has been done.
|
|
|
|
if [ -x /usr/sbin/postinst ]
|
|
then
|
|
/usr/sbin/postinst
|
|
fi
|