svn commit: r287694 - head/usr.sbin/bsdinstall/scripts

Devin Teske dteske at FreeBSD.org
Fri Sep 11 21:14:49 UTC 2015


Author: dteske
Date: Fri Sep 11 21:14:48 2015
New Revision: 287694
URL: https://svnweb.freebsd.org/changeset/base/287694

Log:
  Use a variable for readability
  
  MFC after:	3 days
  X-MFC-to:	stable/10

Modified:
  head/usr.sbin/bsdinstall/scripts/wlanconfig

Modified: head/usr.sbin/bsdinstall/scripts/wlanconfig
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/wlanconfig	Fri Sep 11 21:13:34 2015	(r287693)
+++ head/usr.sbin/bsdinstall/scripts/wlanconfig	Fri Sep 11 21:14:48 2015	(r287694)
@@ -1,7 +1,7 @@
 #!/bin/sh
 #-
 # Copyright (c) 2011 Nathan Whitehorn
-# Copyright (c) 2013 Devin Teske
+# Copyright (c) 2013-2015 Devin Teske
 # All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
@@ -168,7 +168,7 @@ if [ "$BSDINSTALL_CONFIGCURRENT" ]; then
 	f_dprintf "%s" "$output"
 fi
 
-exit 0
+exit $SUCCESS
 
 ################################################################################
 # END


More information about the svn-src-all mailing list