You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
625 B
17 lines
625 B
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
cd /root
|
||
|
curl -sL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh
|
||
|
source nodesource_setup.sh
|
||
|
apt install -y nodejs
|
||
|
apt update && apt install -y git
|
||
|
git clone https://git.benetou.fr/utopiah/offline-octopus
|
||
|
mkdir Prototypes
|
||
|
mv offline-octopus/ Prototypes/
|
||
|
cd Prototypes/offline-octopus/
|
||
|
npm i express
|
||
|
openssl req -nodes -new -x509 -keyout naf-key.pem -out naf.pem -subj "/C=BE/ST=Brussels/L=Brussels/O=Global Security/OU=IT Department/CN=offtopus.benetou.fr"
|
||
|
touch /root/.ssh/id_rsa_offlineoctopus.pub
|
||
|
touch /root/Prototypes/offline-octopus/.keyfrommd5
|
||
|
HOME=/root /usr/bin/node index.js &>> log.txt
|