diff options
author | Martin Ritchie <ritchiem@apache.org> | 2007-04-27 15:06:47 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2007-04-27 15:06:47 +0000 |
commit | f3010247d3d790519dd20865edf85d34bb4104e2 (patch) | |
tree | 68c10349c10f2b54393a02721a13a34d051236be | |
parent | dfea82a6ece0f9a1c92d0ca43a1fa93cc8f1a693 (diff) | |
download | qpid-python-f3010247d3d790519dd20865edf85d34bb4104e2.tar.gz |
Added Apache legal headers and added qpid.start which logs the startup command
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@533131 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/broker/bin/qpid.start | 21 | ||||
-rw-r--r-- | java/broker/bin/qpid.stop | 18 | ||||
-rw-r--r-- | java/broker/bin/qpid.stopall | 18 |
3 files changed, 57 insertions, 0 deletions
diff --git a/java/broker/bin/qpid.start b/java/broker/bin/qpid.start new file mode 100644 index 0000000000..99f2d89f64 --- /dev/null +++ b/java/broker/bin/qpid.start @@ -0,0 +1,21 @@ +#!/bin/bash
+#
+# 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.
+#
+
+qpid-server -run:debug "$@"
\ No newline at end of file diff --git a/java/broker/bin/qpid.stop b/java/broker/bin/qpid.stop index 9193d3c4e1..6482fc3293 100644 --- a/java/broker/bin/qpid.stop +++ b/java/broker/bin/qpid.stop @@ -1,4 +1,22 @@ #!/bin/bash +# +# 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. +# # qpid.stop Script # diff --git a/java/broker/bin/qpid.stopall b/java/broker/bin/qpid.stopall index 2e762bdd50..d71f591de8 100644 --- a/java/broker/bin/qpid.stopall +++ b/java/broker/bin/qpid.stopall @@ -1,4 +1,22 @@ #!/bin/bash +# +# 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. +# # qpid.stopall script # |