[script] Added --unlock_unsafe_flags to start_kudu.sh

Without --unlock_unsafe_flags start_kudu.sh shows
warning:
WARNING: Logging before InitGoogleLogging() is written to STDERR
WARNING: Logging before InitGoogleLogging() is written to STDERR
E0421 21:54:53.600564 17547 hybrid_clock.cc:157] --unlock_unsafe_flags
should be set if configuring --time_source to be system_unsync or mock
E0421 21:54:53.600500 17545 hybrid_clock.cc:157] --unlock_unsafe_flags
should be set if configuring --time_source to be system_unsync or mock

Change-Id: If7cc93849cf61d5a80001f4fd544dd678426fa5d
Reviewed-on: http://gerrit.cloudera.org:8080/15780
Tested-by: Kudu Jenkins
Reviewed-by: Alexey Serbin <aserbin@cloudera.com>
diff --git a/src/kudu/scripts/start_kudu.sh b/src/kudu/scripts/start_kudu.sh
index 31fd2d2..38607d5 100755
--- a/src/kudu/scripts/start_kudu.sh
+++ b/src/kudu/scripts/start_kudu.sh
@@ -146,6 +146,7 @@
   ARGS="$ARGS --log_dir=$dir_log"
   ARGS="$ARGS --rpc_bind_addresses=$IP:$RPC_PORT"
   ARGS="$ARGS --time_source=$TIME_SOURCE"
+  ARGS="$ARGS --unlock_unsafe_flags"
   ARGS="$ARGS --webserver_port=$HTTP_PORT"
   ARGS="$ARGS --webserver_interface=$IP"
   ARGS="$ARGS --webserver_doc_root=$WEBSERVER_DOC_ROOT"
@@ -164,6 +165,7 @@
   ARGS="$ARGS --log_dir=$dir_log"
   ARGS="$ARGS --rpc_bind_addresses=$IP:$RPC_PORT"
   ARGS="$ARGS --time_source=$TIME_SOURCE"
+  ARGS="$ARGS --unlock_unsafe_flags"
   ARGS="$ARGS --webserver_port=$HTTP_PORT"
   ARGS="$ARGS --webserver_interface=$IP"
   ARGS="$ARGS --webserver_doc_root=$WEBSERVER_DOC_ROOT"