Quiet down and stop speaking nonsense!
This commit is contained in:
parent
999e8dfb5c
commit
fcc6c6c5b5
|
@ -118,11 +118,14 @@ function askForConfig(answers, mainCb) {
|
|||
function askEmail(cb) {
|
||||
if (answers.email) { cb(); return; }
|
||||
console.info("");
|
||||
console.info("Welcome!");
|
||||
console.info("");
|
||||
console.info("Telebit uses Greenlock for free automated ssl through Let's Encrypt.");
|
||||
console.info("By using Telebit you agree to:");
|
||||
console.info("");
|
||||
console.info("To accept the Terms of Service for Telebit, Greenlock and Let's Encrypt,");
|
||||
console.info("please enter your email.");
|
||||
console.info(" [x] Accept the Telebit™ terms of service");
|
||||
console.info(" [x] Accept the Let's Encrypt™ terms of service");
|
||||
console.info("");
|
||||
console.info("Enter your email to agree and create your account:");
|
||||
console.info("");
|
||||
// TODO attempt to read email from npmrc or the like?
|
||||
rl.question('email: ', function (email) {
|
||||
|
@ -561,6 +564,7 @@ function parseConfig(err, text) {
|
|||
|
||||
// need just a little time to let the grants occur
|
||||
setTimeout(function () {
|
||||
utils.putConfig('enable', [], function () {
|
||||
utils.putConfig('list', [], function (err) {
|
||||
if (err) { console.error(err); return; }
|
||||
console.log("Success");
|
||||
|
@ -575,6 +579,7 @@ function parseConfig(err, text) {
|
|||
}
|
||||
// end workaround
|
||||
});
|
||||
});
|
||||
|
||||
}, 1 * 1000);
|
||||
});
|
||||
|
|
|
@ -428,7 +428,9 @@ sleep 1
|
|||
###############################
|
||||
# Actually Launch the Service #
|
||||
###############################
|
||||
if [ -n "${TELEBIT_DEBUG}" ]; then
|
||||
echo ""
|
||||
fi
|
||||
if [ "launchd" == "$my_system_launcher" ]; then
|
||||
|
||||
if [ "yes" == "$TELEBIT_USERSPACE" ]; then
|
||||
|
@ -520,7 +522,5 @@ if [ -n "${TELEBIT_DEBUG}" ]; then
|
|||
fi
|
||||
sleep 0.25
|
||||
|
||||
echo ""
|
||||
$TELEBIT_REAL_PATH/bin/node $TELEBIT_REAL_PATH/bin/telebit.js init --tty
|
||||
|
||||
$TELEBIT_REAL_PATH/bin/node $TELEBIT_REAL_PATH/bin/telebit.js enable
|
||||
|
||||
|
|
Loading…
Reference in New Issue