Browse Source

add file-header command

tags/v0.9.0
Jonathan Cobb 4 years ago
parent
commit
a5c6cf61b9
3 changed files with 6 additions and 4 deletions
  1. +2
    -2
      LICENSE.md
  2. +3
    -1
      bubble-server/src/main/java/bubble/main/BubbleMain.java
  3. +1
    -1
      utils/cobbzilla-utils

+ 2
- 2
LICENSE.md View File

@@ -9,8 +9,8 @@ non-commercial, you may use this software under the terms of the GNU Affero Gene
summarized below and reprinted in full thereafter. summarized below and reprinted in full thereafter.


```text ```text
Bubble - a privacy-first VPN
Copyright (C) 2019 Bubble, Inc.
Bubble - a privacy-first VPN application platform
Copyright (C) 2020 Bubble, Inc.
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by it under the terms of the GNU Affero General Public License as published by


+ 3
- 1
bubble-server/src/main/java/bubble/main/BubbleMain.java View File

@@ -7,6 +7,7 @@ import bubble.main.http.BubbleHttpPutMain;
import bubble.server.BubbleServer; import bubble.server.BubbleServer;
import org.cobbzilla.util.collection.MapBuilder; import org.cobbzilla.util.collection.MapBuilder;
import org.cobbzilla.util.main.ConstMain; import org.cobbzilla.util.main.ConstMain;
import org.cobbzilla.util.main.FileHeaderMain;
import org.cobbzilla.util.string.StringUtil; import org.cobbzilla.util.string.StringUtil;
import org.cobbzilla.wizard.main.MainBase; import org.cobbzilla.wizard.main.MainBase;
import org.slf4j.bridge.SLF4JBridgeHandler; import org.slf4j.bridge.SLF4JBridgeHandler;
@@ -30,7 +31,8 @@ public class BubbleMain {
{"crypt", CryptMain.class}, {"crypt", CryptMain.class},
{"rekey", RekeyDatabaseMain.class}, {"rekey", RekeyDatabaseMain.class},
{"generate-algo-conf", GenerateAlgoConfMain.class}, {"generate-algo-conf", GenerateAlgoConfMain.class},
{"const", ConstMain.class}
{"const", ConstMain.class},
{"file-header", FileHeaderMain.class}
}); });


public static void main(String[] args) throws Exception { public static void main(String[] args) throws Exception {


+ 1
- 1
utils/cobbzilla-utils

@@ -1 +1 @@
Subproject commit fb7fe350cd4fe0f0338d37e551a0112cfa2e7835
Subproject commit 523fa176e7f54f74b44e6f9b30ae6a6a69e56432

Loading…
Cancel
Save