From f12e74b340c5a127753ac0deed0a5f57d7b4c34c Mon Sep 17 00:00:00 2001 From: Josh Mudge Date: Fri, 31 Aug 2018 20:11:12 +0000 Subject: [PATCH 1/3] Switch URLs --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e0b1900..fc10c3c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Examples You do this: - curl -fsSL https://get.telebit.cloud | bash + curl -fsSL https://get.telebit.io | bash You get this: @@ -70,19 +70,19 @@ Mac & Linux Open Terminal and run this install script: ``` -curl -fsSL https://get.telebit.cloud | bash +curl -fsSL https://get.telebit.io | bash ``` @@ -98,7 +98,7 @@ What does the installer do? * `~/.config/telebit/telebit.yml` * `~/.local/share/telebit` -Of course, feel free to inspect it before you run it: `curl -fsSL https://get.telebit.cloud` +Of course, feel free to inspect it before you run it: `curl -fsSL https://get.telebit.io` **You can customize the installation**: @@ -109,7 +109,7 @@ export TELEBIT_USERSPACE=no # install as a system service (launchd export TELEBIT_PATH=/opt/telebit export TELEBIT_USER=telebit export TELEBIT_GROUP=telebit -curl -fsSL https://get.telebit.cloud/ | bash +curl -fsSL https://get.telebit.io/ | bash ``` That will change the bundled version of node.js is bundled with Telebit Relay From 45386c2649bdf6f5d5c331ec5c8c3ea4dff4a571 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 5 Sep 2018 13:33:01 -0600 Subject: [PATCH 2/3] bugfix: 0-index, duh --- bin/telebit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/telebit.js b/bin/telebit.js index 004a44a..7d3617b 100755 --- a/bin/telebit.js +++ b/bin/telebit.js @@ -3,7 +3,7 @@ 'use strict'; // node telebit daemon arg1 arg2 -if ('daemon' === process.argv[3]) { +if ('daemon' === process.argv[2]) { require('./telebitd.js'); } else { require('./telebit-remote.js'); From b2fc11d4bc9a9f1d4a849e2756e743ddd501e63d Mon Sep 17 00:00:00 2001 From: imbdb Date: Fri, 7 Sep 2018 11:29:04 +0000 Subject: [PATCH 3/3] Corrected a small language error --- bin/telebit-remote.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/telebit-remote.js b/bin/telebit-remote.js index 0fb109d..667eda4 100755 --- a/bin/telebit-remote.js +++ b/bin/telebit-remote.js @@ -47,8 +47,8 @@ function help() { //console.info('\ttelebit init # bootstrap the config files'); //console.info(''); console.info('\ttelebit status # whether enabled or disabled'); - console.info('\ttelebit enable # disallow incoming connections'); - console.info('\ttelebit disable # allow incoming connections'); + console.info('\ttelebit enable # allow incoming connections'); + console.info('\ttelebit disable # disallow incoming connections'); console.info(''); console.info('\ttelebit list # list rules for servernames and ports'); console.info('');