Ver a proveniência

Fill in missing standard file headers

tags/v0.9.1^0
Jonathan Cobb há 5 anos
ascendente
cometimento
0230d5aad3
39 ficheiros alterados com 109 adições e 12 eliminações
  1. +3
    -0
      bin/bactivate
  2. +3
    -0
      bin/bconst
  3. +3
    -0
      bin/bdecrypt
  4. +3
    -0
      bin/bdelete
  5. +3
    -0
      bin/bencrypt
  6. +3
    -0
      bin/bget
  7. +3
    -0
      bin/bgeti
  8. +3
    -0
      bin/bgeti1
  9. +3
    -0
      bin/bgetn
  10. +3
    -0
      bin/bgetn1
  11. +3
    -0
      bin/bmodel
  12. +3
    -0
      bin/bpatch
  13. +3
    -0
      bin/bpatchfull
  14. +3
    -0
      bin/bpost
  15. +3
    -0
      bin/bposte
  16. +3
    -0
      bin/bput
  17. +3
    -0
      bin/bpute
  18. +3
    -0
      bin/bscript
  19. +3
    -0
      bin/bubble
  20. +3
    -1
      bin/bubble_common
  21. +3
    -0
      bin/build_dist
  22. +3
    -0
      bin/bunlock
  23. +3
    -0
      bin/cleanup_bubble_databases
  24. +3
    -0
      bin/create_user_and_network
  25. +3
    -0
      bin/first_time_setup.sh
  26. +3
    -1
      bin/first_time_ubuntu.sh
  27. +3
    -0
      bin/git_update_bubble.sh
  28. +3
    -0
      bin/jq-all-vals
  29. +3
    -0
      bin/list_bubble_databases
  30. +3
    -0
      bin/new_bubble.sh
  31. +3
    -0
      bin/prep_bubble_jar
  32. +3
    -0
      bin/proxy
  33. +3
    -0
      bin/reset_bubble_db
  34. +3
    -0
      bin/run.sh
  35. +3
    -0
      bin/update_role
  36. +1
    -5
      bubble-server/pom.xml
  37. +1
    -1
      bubble-server/src/main/resources/META-INF/bubble/bubble.properties
  38. +1
    -3
      pom.xml
  39. +1
    -1
      utils/cobbzilla-utils

+ 3
- 0
bin/bactivate Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Initial activation of a bubble server
#
# Usage: activate activation.json


+ 3
- 0
bin/bconst Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Write a constant value to stdout.
#
# This will only ever write the constant value to stdout if it can successfully be read.


+ 3
- 0
bin/bdecrypt Ver ficheiro

@@ -1,4 +1,7 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
SCRIPT="${0}"
SCRIPT_DIR=$(cd $(dirname ${SCRIPT}) && pwd)
. ${SCRIPT_DIR}/bubble_common


+ 3
- 0
bin/bdelete Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run an HTTP DELETE against the API
#
# Usage:


+ 3
- 0
bin/bencrypt Ver ficheiro

@@ -1,4 +1,7 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
SCRIPT="${0}"
SCRIPT_DIR=$(cd $(dirname ${SCRIPT}) && pwd)
. ${SCRIPT_DIR}/bubble_common


+ 3
- 0
bin/bget Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run an HTTP GET against the API
#
# Usage:


+ 3
- 0
bin/bgeti Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run an HTTP GET against the API, then print out the "uuid" attribute only
#
# Usage:


+ 3
- 0
bin/bgeti1 Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run an HTTP GET against the API, then print out the "uuid" attribute only, and only the first one
#
# Usage:


+ 3
- 0
bin/bgetn Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run an HTTP GET against the API, then print out the "name" attribute only
#
# Usage:


+ 3
- 0
bin/bgetn1 Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run an HTTP GET against the API, then print out the "name" attribute only, and only the first one
#
# Usage:


+ 3
- 0
bin/bmodel Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Write a model to a bubble server
#
# Usage: model [-u/--update-all] model-file


+ 3
- 0
bin/bpatch Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Usage:
#
# bpatch hostname


+ 3
- 0
bin/bpatchfull Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Usage:
#
# bpatchfull hostname [norestart]


+ 3
- 0
bin/bpost Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run an HTTP POST against the API
#
# Usage:


+ 3
- 0
bin/bposte Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run an HTTP POST against the API with an empty request entity
#
# Usage:


+ 3
- 0
bin/bput Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run an HTTP PUT against the API
#
# Usage:


+ 3
- 0
bin/bpute Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run an HTTP PUT against the API with an empty request entity
#
# Usage:


+ 3
- 0
bin/bscript Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run a local JSON API script against a remote API server
#
# Usage:


+ 3
- 0
bin/bubble Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Bubble client script. Wraps the run.sh script.
#
# Usually not called directly, instead use one of the higher-level wrappers: sync-model, run-script


+ 3
- 1
bin/bubble_common Ver ficheiro

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
function die {
if [[ -z "${SCRIPT}" ]] ; then
echo 1>&2 "${1}"


+ 3
- 0
bin/build_dist Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Build Bubble distribution ZIP file
#
# Usage:


+ 3
- 0
bin/bunlock Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Unlock a new bubble
#
# Usage:


+ 3
- 0
bin/cleanup_bubble_databases Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Drop the various temporary databases that sometimes get left around by the tests
# Do not run this command while tests are running
#


+ 3
- 0
bin/create_user_and_network Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Create a new user and start a network for that user
#
# Usage: create_user_and_network <json-file>


+ 3
- 0
bin/first_time_setup.sh Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Performs first-time setup after a fresh git clone.
# Installs utility libraries.
#


+ 3
- 1
bin/first_time_ubuntu.sh Ver ficheiro

@@ -1,5 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
function die {
echo 1>&2 "${1}"
exit 1


+ 3
- 0
bin/git_update_bubble.sh Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Update repository from master, including submodules, and rebuild bubble jar file
#
# Usage:


+ 3
- 0
bin/jq-all-vals Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Print all values for a JSON property name, among any given JSON via stdin.
# JSON could be object, array, nested objects, etc.
#


+ 3
- 0
bin/list_bubble_databases Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# List bubble databases
#
# Usage:


+ 3
- 0
bin/new_bubble.sh Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Launch a new bubble from a sage node
#
# Usage: new_bubble.sh config-file


+ 3
- 0
bin/prep_bubble_jar Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Prepares the bubble.jar file for active usage.
#
# 1. Update role JSON in bubble-server/src/main/resources/ansible/default_roles.json


+ 3
- 0
bin/proxy Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Request a URL via the reverse proxy
#
# Usage: proxy url outfile


+ 3
- 0
bin/reset_bubble_db Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Reset the local "bubble" database
#
# Usage: reset_bubble_db [debug]


+ 3
- 0
bin/run.sh Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Run Bubble server or CLI commands. A wrapper for starting a JVM to run Bubble programs.
#
# Usage: run.sh [debug [debug-port]] [command] [args]


+ 3
- 0
bin/update_role Ver ficheiro

@@ -1,5 +1,8 @@
#!/bin/bash
#
# Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md
#
#
# Update a role on a remote node
#
# Usage:


+ 1
- 5
bubble-server/pom.xml Ver ficheiro

@@ -1,11 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
(c) Copyright 2019 jonathan cobb
For personal or non-commercial use, this code is available under the GNU Affero General Public License, version 3:
https://www.gnu.org/licenses/agpl-3.0.html
For commercial use, please contact jonathan@kyuss.org
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">


+ 1
- 1
bubble-server/src/main/resources/META-INF/bubble/bubble.properties Ver ficheiro

@@ -1 +1 @@
bubble.version=0.9.0
bubble.version=0.9.1

+ 1
- 3
pom.xml Ver ficheiro

@@ -1,9 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
(c) Copyright 2019 jonathan cobb
This code is available under the GNU Affero General Public License, version 3: https://www.gnu.org/licenses/agpl-3.0.html
<!-- Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://git.bubblev.org/bubblev/bubble/src/branch/master/LICENSE.md -->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>


+ 1
- 1
utils/cobbzilla-utils

@@ -1 +1 @@
Subproject commit 33a9e0d000f2def25fd0ae5fd92aaa2ae6e4cf71
Subproject commit 6cc7a8a279ebb90edbfd8ec379acb5a52acad522

Carregando…
Cancelar
Guardar