before you can run `prog` again.
EOF
- cleanexit 1
+ exit 1
fi
###############################################################################
- if [ `uname -s` != FreeBSD ]
- then
- error 'requires FreeBSD'
- fi
-
-
if [ -f "$CONFIG_FILE" -a -r "$CONFIG_FILE" ]
then
. "$CONFIG_FILE"
: ${upgrade_show_new_version="NO"}
+ check_lockfile
+
+
+ trap 'cleanexit 1' 1 2 15 30 31
+
+
+ if [ `uname -s` != FreeBSD ]
+ then
+ error 'requires FreeBSD'
+ fi
+
+
check_boolean_variables
check_numeric_variables
check_portupgrade_logdir
- check_lockfile
-
check_statusfile
-
-
- trap 'cleanexit 1' 1 2 15 30 31
###############################################################################