mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 18:15:42 +01:00
* Move example and integration test configuration files to /etc/csaf, this includes the provider's config.toml as well as the test OpenPGP keys. This shall make it more compatible with good practices like the FHS. Co-authored-by: Jan Höfelmeyer <Jan Höfelmeyer jhoefelmeyer@intevation.de> Co-authored-by: Bernhard Reiter <bernhard@intevation.de>
25 lines
704 B
Bash
Executable file
25 lines
704 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
sudo mkdir -p /var/lib/csaf
|
|
sudo chgrp www-data /var/lib/csaf/
|
|
sudo chmod g+s /var/lib/csaf/
|
|
sudo touch /var/lib/csaf/validations.db
|
|
sudo chgrp www-data /var/lib/csaf/validations.db
|
|
sudo chmod g+rw,o-rwx /var/lib/csaf/validations.db
|
|
|
|
echo '
|
|
remote_validator= { "url" = "http://localhost:3000", "presets" = ["mandatory"], "cache" = "/var/lib/csaf/validations.db" }
|
|
' | sudo tee --append /etc/csaf/config.toml
|
|
|
|
# Install nodejs
|
|
curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
|
|
sudo apt-get install -y nodejs
|
|
|
|
npm install pm2 -g
|
|
|
|
pushd ~
|
|
git clone https://github.com/secvisogram/csaf-validator-service.git
|
|
cd csaf-validator-service
|
|
npm ci
|
|
pm2 start npm -- run dev
|
|
popd
|