Include letsencrypt within trove
This commit is contained in:
parent
be3658dd13
commit
8f86b556c7
|
@ -95,6 +95,9 @@ FRIENDS_TROVE_PASSWORD=
|
|||
FRIENDS_TROVE_SERVER=
|
||||
FRIENDS_TROVE_SSH_PORT=2222
|
||||
|
||||
# This isn't used here, but is included for trove creation purposes
|
||||
LETSENCRYPT_REPO="https://github.com/letsencrypt/letsencrypt"
|
||||
|
||||
# An optional password to log into IRC. This applies to all users
|
||||
IRC_PASSWORD=
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ NODH=
|
|||
DH_KEYLENGTH=2048
|
||||
INSTALL_DIR=/root/build
|
||||
LETSENCRYPT_SERVER='https://acme-v01.api.letsencrypt.org/directory'
|
||||
LETSENCRYPT_REPO='https://github.com/letsencrypt/letsencrypt'
|
||||
LETSENCRYPT_REPO="https://github.com/letsencrypt/letsencrypt"
|
||||
MY_EMAIL_ADDRESS=
|
||||
|
||||
function show_help {
|
||||
|
@ -184,7 +184,7 @@ function add_cert_letsencrypt {
|
|||
|
||||
# obtain the repo
|
||||
if [ ! -d ${INSTALL_DIR}/letsencrypt ]; then
|
||||
git clone $LETSENCRYPT_REPO
|
||||
git clone $LETSENCRYPT_REPO ${INSTALL_DIR}/letsencrypt
|
||||
if [ ! -d ${INSTALL_DIR}/letsencrypt ]; then
|
||||
exit 76283
|
||||
fi
|
||||
|
|
|
@ -130,7 +130,7 @@ function mesh_babel {
|
|||
mkdir ~/develop
|
||||
fi
|
||||
cd ~/develop
|
||||
git clone $TOXID_REPO
|
||||
git clone $TOXID_REPO ~/develop/toxid
|
||||
fi
|
||||
cd ~/develop/toxid
|
||||
sudo make install
|
||||
|
|
|
@ -65,7 +65,7 @@ function install_toxcore {
|
|||
mkdir ~/develop
|
||||
fi
|
||||
cd ~/develop
|
||||
git clone $TOXCORE_REPO
|
||||
git clone $TOXCORE_REPO ~/develop/toxcore
|
||||
cd ~/develop/toxcore
|
||||
autoreconf -i
|
||||
./configure --enable-daemon
|
||||
|
@ -144,7 +144,7 @@ function install_toxid {
|
|||
return
|
||||
fi
|
||||
cd ~/develop
|
||||
git clone $TOXID_REPO
|
||||
git clone $TOXID_REPO ~/develop/toxid
|
||||
cd ~/develop/toxid
|
||||
make
|
||||
sudo make install
|
||||
|
|
Loading…
Reference in New Issue