You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2012/10/17 14:56:00 UTC

svn commit: r1399211 - in /accumulo/branches/1.4: ./ src/ src/assemble/ src/assemble/platform/debian/ src/assemble/platform/debian/init.d/ src/core/ src/server/ src/server/src/main/java/org/apache/accumulo/server/test/randomwalk/security/

Author: ecn
Date: Wed Oct 17 12:55:59 2012
New Revision: 1399211

URL: http://svn.apache.org/viewvc?rev=1399211&view=rev
Log:
ACCUMULO-819 update rat count, add license to new scripts, remove authors as per the coding standard, merge to 1.4 branch

Modified:
    accumulo/branches/1.4/   (props changed)
    accumulo/branches/1.4/src/   (props changed)
    accumulo/branches/1.4/src/assemble/build.sh
    accumulo/branches/1.4/src/assemble/platform/debian/gc-only-init.sh
    accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-gc
    accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-master
    accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-monitor
    accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-slave
    accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-tracer
    accumulo/branches/1.4/src/assemble/platform/debian/master-only-init.sh
    accumulo/branches/1.4/src/assemble/platform/debian/monitor-only-init.sh
    accumulo/branches/1.4/src/assemble/platform/debian/slave-only-init.sh
    accumulo/branches/1.4/src/assemble/platform/debian/stand-alone-init.sh
    accumulo/branches/1.4/src/assemble/platform/debian/tracer-only-init.sh
    accumulo/branches/1.4/src/core/   (props changed)
    accumulo/branches/1.4/src/server/   (props changed)
    accumulo/branches/1.4/src/server/src/main/java/org/apache/accumulo/server/test/randomwalk/security/SecurityHelper.java

Propchange: accumulo/branches/1.4/
------------------------------------------------------------------------------
  Merged /accumulo/branches/1.4.2:r1399210

Propchange: accumulo/branches/1.4/src/
------------------------------------------------------------------------------
  Merged /accumulo/branches/1.4.2/src:r1399210

Modified: accumulo/branches/1.4/src/assemble/build.sh
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/build.sh?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/build.sh (original)
+++ accumulo/branches/1.4/src/assemble/build.sh Wed Oct 17 12:55:59 2012
@@ -41,7 +41,7 @@ runAt() {
 run mvn -U -P distclean clean 
 mvn rat:check 
 COUNT=`grep '!????' target/rat.txt | wc -l`
-EXPECTED=55
+EXPECTED=53
 if [ "$COUNT" -ne $EXPECTED ]
 then
    fail expected $EXPECTED files missing licenses, but saw "$COUNT"

Modified: accumulo/branches/1.4/src/assemble/platform/debian/gc-only-init.sh
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/gc-only-init.sh?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/gc-only-init.sh (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/gc-only-init.sh Wed Oct 17 12:55:59 2012
@@ -1,4 +1,19 @@
 #! /bin/sh
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 if [ $(id -ur) -ne 0 ]; then
   echo "This script must be run as root" 1>&2
   exit 1

Modified: accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-gc
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-gc?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-gc (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-gc Wed Oct 17 12:55:59 2012
@@ -9,7 +9,20 @@
 # Description:      The accumulo garbage collector handles cleanup of old walogs and files in hdfs
 ### END INIT INFO
 
-# Author: John Vines <jo...@sqrrl.com>
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 # Do NOT "set -e"
 install -d -m 0775 -o root -g accumulo /var/run/accumulo

Modified: accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-master
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-master?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-master (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-master Wed Oct 17 12:55:59 2012
@@ -9,7 +9,20 @@
 # Description:      The accumulo master manages tablet assignment and balance to accumulo
 ### END INIT INFO
 
-# Author: John Vines <jo...@sqrrl.com>
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 # Do NOT "set -e"
 install -d -m 0775 -o root -g accumulo /var/run/accumulo

Modified: accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-monitor
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-monitor?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-monitor (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-monitor Wed Oct 17 12:55:59 2012
@@ -9,7 +9,20 @@
 # Description:      The accumulo monitor provides a convenient mechanism for monitoring accumulo
 ### END INIT INFO
 
-# Author: John Vines <jo...@sqrrl.com>
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 # Do NOT "set -e"
 install -d -m 0775 -o root -g accumulo /var/run/accumulo

Modified: accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-slave
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-slave?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-slave (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-slave Wed Oct 17 12:55:59 2012
@@ -9,7 +9,20 @@
 # Description:      The accumulo slaves bundle the tserver and logger processes for accumulo
 ### END INIT INFO
 
-# Author: John Vines <jo...@sqrrl.com>
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 # Do NOT "set -e"
 install -d -m 0775 -o root -g accumulo /var/run/accumulo

Modified: accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-tracer
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-tracer?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-tracer (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/init.d/accumulo-tracer Wed Oct 17 12:55:59 2012
@@ -9,7 +9,20 @@
 # Description:      The accumulo tracer provides a mechanism for tracing accumulo calls
 ### END INIT INFO
 
-# Author: John Vines <jo...@sqrrl.com>
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 # Do NOT "set -e"
 install -d -m 0775 -o root -g accumulo /var/run/accumulo

Modified: accumulo/branches/1.4/src/assemble/platform/debian/master-only-init.sh
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/master-only-init.sh?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/master-only-init.sh (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/master-only-init.sh Wed Oct 17 12:55:59 2012
@@ -1,4 +1,19 @@
 #! /bin/sh
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 if [ $(id -ur) -ne 0 ]; then
   echo "This script must be run as root" 1>&2
   exit 1

Modified: accumulo/branches/1.4/src/assemble/platform/debian/monitor-only-init.sh
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/monitor-only-init.sh?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/monitor-only-init.sh (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/monitor-only-init.sh Wed Oct 17 12:55:59 2012
@@ -1,4 +1,19 @@
 #! /bin/sh
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 if [ $(id -ur) -ne 0 ]; then
   echo "This script must be run as root" 1>&2
   exit 1

Modified: accumulo/branches/1.4/src/assemble/platform/debian/slave-only-init.sh
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/slave-only-init.sh?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/slave-only-init.sh (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/slave-only-init.sh Wed Oct 17 12:55:59 2012
@@ -1,4 +1,19 @@
 #! /bin/sh
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 if [ $(id -ur) -ne 0 ]; then
   echo "This script must be run as root" 1>&2
   exit 1

Modified: accumulo/branches/1.4/src/assemble/platform/debian/stand-alone-init.sh
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/stand-alone-init.sh?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/stand-alone-init.sh (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/stand-alone-init.sh Wed Oct 17 12:55:59 2012
@@ -1,4 +1,19 @@
 #! /bin/sh
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 if [ $(id -ur) -ne 0 ]; then
   echo "This script must be run as root" 1>&2
   exit 1

Modified: accumulo/branches/1.4/src/assemble/platform/debian/tracer-only-init.sh
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/assemble/platform/debian/tracer-only-init.sh?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/assemble/platform/debian/tracer-only-init.sh (original)
+++ accumulo/branches/1.4/src/assemble/platform/debian/tracer-only-init.sh Wed Oct 17 12:55:59 2012
@@ -1,4 +1,19 @@
 #! /bin/sh
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 if [ $(id -ur) -ne 0 ]; then
   echo "This script must be run as root" 1>&2
   exit 1

Propchange: accumulo/branches/1.4/src/core/
------------------------------------------------------------------------------
  Merged /accumulo/branches/1.4.2/src/core:r1399210

Propchange: accumulo/branches/1.4/src/server/
------------------------------------------------------------------------------
  Merged /accumulo/branches/1.4.2/src/server:r1399210

Modified: accumulo/branches/1.4/src/server/src/main/java/org/apache/accumulo/server/test/randomwalk/security/SecurityHelper.java
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/server/src/main/java/org/apache/accumulo/server/test/randomwalk/security/SecurityHelper.java?rev=1399211&r1=1399210&r2=1399211&view=diff
==============================================================================
--- accumulo/branches/1.4/src/server/src/main/java/org/apache/accumulo/server/test/randomwalk/security/SecurityHelper.java (original)
+++ accumulo/branches/1.4/src/server/src/main/java/org/apache/accumulo/server/test/randomwalk/security/SecurityHelper.java Wed Oct 17 12:55:59 2012
@@ -31,10 +31,6 @@ import org.apache.accumulo.server.test.r
 import org.apache.hadoop.fs.FileSystem;
 import org.apache.log4j.Logger;
 
-/**
- * @author jwvines
- * 
- */
 public class SecurityHelper {
   protected final static Logger log = Logger.getLogger(SecurityHelper.class);