Getting nodejs repo gpg key
This commit is contained in:
parent
bf892728c0
commit
7c029463c4
|
@ -45,6 +45,11 @@ NODEJS_INSTALLED_APPS_FILE=$HOME/.nodejs-apps
|
|||
|
||||
function mesh_install_nodejs {
|
||||
# Note: this has to be jessie for now
|
||||
if [ ! -d ${rootdir}/$INSTALL_DIR ]; then
|
||||
mkdir ${rootdir}/$INSTALL_DIR
|
||||
fi
|
||||
chroot "${rootdir}" wget -qO- https://deb.nodesource.com/gpgkey/nodesource.gpg.key > $INSTALL_DIR/node.gpg.key
|
||||
chroot "${rootdir}" apt-key add $INSTALL_DIR/node.gpg.key
|
||||
echo "deb https://deb.nodesource.com/node_7.x jessie main" > ${rootdir}/etc/apt/sources.list.d/nodesource.list
|
||||
echo "deb-src https://deb.nodesource.com/node_7.x jessie main" >> ${rootdir}/etc/apt/sources.list.d/nodesource.list
|
||||
chroot "${rootdir}" apt-get update
|
||||
|
@ -146,6 +151,12 @@ function install_nodejs {
|
|||
fi
|
||||
|
||||
# Note: this has to be jessie for now
|
||||
if [ ! -d $INSTALL_DIR ]; then
|
||||
mkdir $INSTALL_DIR
|
||||
fi
|
||||
cd $INSTALL_DIR
|
||||
wget -qO- https://deb.nodesource.com/gpgkey/nodesource.gpg.key > $INSTALL_DIR/node.gpg.key
|
||||
apt-key add $INSTALL_DIR/node.gpg.key
|
||||
echo "deb https://deb.nodesource.com/node_7.x jessie main" > /etc/apt/sources.list.d/nodesource.list
|
||||
echo "deb-src https://deb.nodesource.com/node_7.x jessie main" >> /etc/apt/sources.list.d/nodesource.list
|
||||
|
||||
|
|
Loading…
Reference in New Issue