You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by fr...@apache.org on 2017/04/20 18:40:24 UTC

[35/44] incubator-trafficcontrol git commit: fix missing decls

fix missing decls

(cherry picked from commit 620e9e361c9ab449fa6b1972465561df673b7e46)


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/b46ba32b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/b46ba32b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/b46ba32b

Branch: refs/heads/2.0.x
Commit: b46ba32be172c6db22931505b405d9285b98481f
Parents: a5038b5
Author: Dan Kirkwood <da...@gmail.com>
Authored: Thu Apr 13 14:15:43 2017 -0600
Committer: Dan Kirkwood <da...@gmail.com>
Committed: Wed Apr 19 15:36:19 2017 -0600

----------------------------------------------------------------------
 traffic_ops/install/bin/_postinstall | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/b46ba32b/traffic_ops/install/bin/_postinstall
----------------------------------------------------------------------
diff --git a/traffic_ops/install/bin/_postinstall b/traffic_ops/install/bin/_postinstall
index edaf5b4..7b5c17f 100755
--- a/traffic_ops/install/bin/_postinstall
+++ b/traffic_ops/install/bin/_postinstall
@@ -739,14 +739,14 @@ sub main {
     # if reconfigure is set then rebuild the perl deps
     if ($reconfigure) {
 	chdir("/opt/traffic_ops/install/bin");
-        $rc = InstallUtils::execCommand( "./download_web_deps", "-i" );
+        my $rc = InstallUtils::execCommand( "./download_web_deps", "-i" );
         if ( $rc != 0 ) {
             errorOut("Failed to install Traffic Ops Web dependencies, check the console output and rerun postinstall once you've resolved the error");
         }
     }
     else {
 	chdir("/opt/traffic_ops/install/bin");
-        $rc = InstallUtils::execCommand( "./download_web_deps", "-i" );
+        my $rc = InstallUtils::execCommand( "./download_web_deps", "-i" );
         if ( $rc != 0 ) {
             errorOut("Failed to install Traffic Ops Web dependencies, check the console output and rerun postinstall once you've resolved the error");
         }