You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by mi...@apache.org on 2017/03/09 20:13:55 UTC

[1/2] incubator-trafficcontrol git commit: fixed matching double quote on the chown command for PR #317

Repository: incubator-trafficcontrol
Updated Branches:
  refs/heads/master b1842dc0a -> da8a8e225


fixed matching double quote on the chown command for PR #317


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

Branch: refs/heads/master
Commit: 9105fe75fafc4bbc15894ca62763297cc52a6870
Parents: b1842dc
Author: Dewayne Richardson <de...@apache.org>
Authored: Thu Mar 9 12:24:45 2017 -0700
Committer: Dewayne Richardson <de...@apache.org>
Committed: Thu Mar 9 12:24:45 2017 -0700

----------------------------------------------------------------------
 traffic_ops/bin/traffic_ops_ort.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/9105fe75/traffic_ops/bin/traffic_ops_ort.pl
----------------------------------------------------------------------
diff --git a/traffic_ops/bin/traffic_ops_ort.pl b/traffic_ops/bin/traffic_ops_ort.pl
index 03fa5b5..19cfacf 100755
--- a/traffic_ops/bin/traffic_ops_ort.pl
+++ b/traffic_ops/bin/traffic_ops_ort.pl
@@ -1226,7 +1226,7 @@ sub replace_cfg_file {
 			. $cfg_file_tracker->{$cfg_file}->{'location'}
 			. "/$cfg_file\n";
 		system("/bin/cp $cfg_file_tracker->{$cfg_file}->{'backup_from_trops'} $cfg_file_tracker->{$cfg_file}->{'location'}/$cfg_file");
-		chown $ats_uid, $ats_uid, $cfg_file_tracker->{$cfg_file}->{'location'}/$cfg_file";
+		chown $ats_uid, $ats_uid, "$cfg_file_tracker->{$cfg_file}->{'location'}/$cfg_file";
 		$cfg_file_tracker->{$cfg_file}->{'change_applied'}++;
 		( $log_level >> $TRACE ) && print "TRACE Setting change applied for $cfg_file.\n";
 		$return_code = $CFG_FILE_CHANGED;


[2/2] incubator-trafficcontrol git commit: This closes #341

Posted by mi...@apache.org.
This closes #341


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

Branch: refs/heads/master
Commit: da8a8e2250b4f3f9880b348d5ff9aa65743a3724
Parents: 9105fe7
Author: Jeremy Mitchell <mi...@gmail.com>
Authored: Thu Mar 9 13:13:50 2017 -0700
Committer: Jeremy Mitchell <mi...@gmail.com>
Committed: Thu Mar 9 13:13:50 2017 -0700

----------------------------------------------------------------------

----------------------------------------------------------------------