You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ma...@apache.org on 2013/06/30 19:12:36 UTC

svn commit: r1498158 - /incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py

Author: mahadev
Date: Sun Jun 30 17:12:36 2013
New Revision: 1498158

URL: http://svn.apache.org/r1498158
Log:
AMBARI-2523. Change wording's of various notfications/messages in Ambari Setup so that users are not alarmed. (mahadev)

Modified:
    incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py

Modified: incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py?rev=1498158&r1=1498157&r2=1498158&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py (original)
+++ incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py Sun Jun 30 17:12:36 2013
@@ -534,8 +534,7 @@ def check_selinux():
         print "Temporarily disabling SELinux"
         run_os_command(SE_SETENFORCE_CMD)
       print_warning_msg(
-        "SELinux is set to 'permissive' mode and temporarily disabled."
-        " You should disable SELinux permanently.")
+        "SELinux is set to 'permissive' mode and temporarily disabled.")
       ok = get_YN_input("OK to continue [y/n] (y)? ", True)
       if not ok:
         raise FatalException(1, None)
@@ -659,7 +658,7 @@ def check_ambari_user():
       update_user_setting = create_user # Only if we will create another user
     else: # user is not configured yet
       update_user_setting = True # Write configuration anyway
-      create_user = get_YN_input("Create a separate user for ambari-server "
+      create_user = get_YN_input("Use a separate user for ambari-server "
                    "daemon [y/n] (n)? ", False)
       if not create_user:
         user = "root"
@@ -695,7 +694,7 @@ def check_iptables():
     print 'Stopping iptables service'
   '''
   retcode, out, err = run_os_command(IP_TBLS_STOP_CMD)
-  print 'iptables is disabled now'
+  print 'iptables is disabled now. please reenable later.'
 
   if not retcode == 0 and err and len(err) > 0:
     print err