b4ddf7d22f
and /etc/ttys. - Remove BROKEN, DEPRECATED and EXPIRATION_DATE. PR: ports/104312 Submitted by: Frank J. Laszlo <laszlof@vonostingroup.com> Approved by: portmgr (erwin)
7 lines
166 B
Bash
7 lines
166 B
Bash
#!/bin/sh
|
|
[ "x$1" = "x" ] && exit 1
|
|
if [ "x$2" = "xDEINSTALL" ]; then
|
|
sed -i '' "s|^console.*|console none unknown off secure|" /etc/ttys
|
|
rm -f /boot.config
|
|
fi
|