You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ey...@apache.org on 2011/11/10 22:05:16 UTC

svn commit: r1200547 - in /incubator/ambari/trunk/agent/src/main/python: ambari_agent/__init__.py ambari_torrent/__init__.py setup.py

Author: eyang
Date: Thu Nov 10 21:05:16 2011
New Revision: 1200547

URL: http://svn.apache.org/viewvc?rev=1200547&view=rev
Log:
AMBARI-129. Rename agent package reference of HMS to Ambari. (Eric Yang)

Modified:
    incubator/ambari/trunk/agent/src/main/python/ambari_agent/__init__.py
    incubator/ambari/trunk/agent/src/main/python/ambari_torrent/__init__.py
    incubator/ambari/trunk/agent/src/main/python/setup.py

Modified: incubator/ambari/trunk/agent/src/main/python/ambari_agent/__init__.py
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/agent/src/main/python/ambari_agent/__init__.py?rev=1200547&r1=1200546&r2=1200547&view=diff
==============================================================================
--- incubator/ambari/trunk/agent/src/main/python/ambari_agent/__init__.py (original)
+++ incubator/ambari/trunk/agent/src/main/python/ambari_agent/__init__.py Thu Nov 10 21:05:16 2011
@@ -16,7 +16,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY 
 See the License for the specific language governing permissions and
 limitations under the License.
 
-Hadoop Management System Agent
+Ambari Agent
 
 """
 
@@ -28,7 +28,7 @@ __author__ = [
     "Kan Zhang <ka...@yahoo.com>"
 ]
 __license__ = "Apache License v2.0"
-__contributors__ = "see http://incubator.apache.org/hms/contributors"
+__contributors__ = "see http://incubator.apache.org/ambari/contributors"
 
 import logging
 import logging.handlers

Modified: incubator/ambari/trunk/agent/src/main/python/ambari_torrent/__init__.py
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/agent/src/main/python/ambari_torrent/__init__.py?rev=1200547&r1=1200546&r2=1200547&view=diff
==============================================================================
--- incubator/ambari/trunk/agent/src/main/python/ambari_torrent/__init__.py (original)
+++ incubator/ambari/trunk/agent/src/main/python/ambari_torrent/__init__.py Thu Nov 10 21:05:16 2011
@@ -15,7 +15,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-"""Hadoop Management System Torrent Callback"""
+"""Ambari Torrent Callback"""
 
 from __future__ import generators
 
@@ -25,7 +25,7 @@ __author__ = [
     "Kan Zhang <ka...@yahoo.com>"
 ]
 __license__ = "Apache License v2.0"
-__contributors__ = "see http://incubator.apache.org/hms/contributors"
+__contributors__ = "see http://incubator.apache.org/ambari/contributors"
 
 import logging
 import logging.handlers

Modified: incubator/ambari/trunk/agent/src/main/python/setup.py
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/agent/src/main/python/setup.py?rev=1200547&r1=1200546&r2=1200547&view=diff
==============================================================================
--- incubator/ambari/trunk/agent/src/main/python/setup.py (original)
+++ incubator/ambari/trunk/agent/src/main/python/setup.py Thu Nov 10 21:05:16 2011
@@ -31,7 +31,7 @@ setup(
     entry_points = {
         "console_scripts": [
             "ambari-agent = ambari_agent.main:main",
-            "ambari-torrent-callback = hms_torrent.main:main",
+            "ambari-torrent-callback = ambari_torrent.main:main",
         ],
     }
 )