Lines 187-190
pkg_postinst() {
Link Here
|
187 |
if [[ ! -e "${EROOT}/var/log/boot" ]] ; then |
187 |
if [[ ! -e "${EROOT}/var/log/boot" ]] ; then |
188 |
touch "${EROOT}/var/log/boot" |
188 |
touch "${EROOT}/var/log/boot" |
189 |
fi |
189 |
fi |
|
|
190 |
|
191 |
local ver |
192 |
for ver in ${REPLACING_VERSIONS}; do |
193 |
ver_test ${ver} -gt 3.07-r1 && continue |
194 |
elog "Previously, the 'halt' command caused the system to power off" |
195 |
elog "even if option -p was not given. This long-standing bug has" |
196 |
elog "been fixed, and the command now behaves as documented." |
197 |
break |
198 |
done |
190 |
} |
199 |
} |
191 |
- |
|
|