da667 / AutoMISP

automate your MISP installs
66 stars 46 forks source link

pear.php.net is down (installing Crypt_GPG) #4

Open KywoSkylake opened 5 years ago

KywoSkylake commented 5 years ago

Hi,

First thank you for your work to make this script, it save a lot of time. But I ran into a small error, since January 23, pear.php.net is down -> https://twitter.com/pear/status/1088234418039414785

Therefor you need to download the pear packages manually and install them

# Console_CommandLine needed for Crypt_GPG
git clone https://github.com/pear/Console_CommandLine.git
cd Console_CommandLine/
sudo pear install package.xml
cd ..
rm -rf Console_CommandLine/

git clone https://github.com/pear/Crypt_GPG.git
cd Crypt_GPG/
sudo pear install package.xml
cd ..
rm -rf Crypt_GPG/

When you apply this into your script it should work. Thank you very much again :)

SteveClement commented 5 years ago

@da667 are you still maintaining this?

SteveClement commented 5 years ago

@petmi627 we are working on an official installer for the MISP Project.

Once this is developed AutoMISP would be superseded and we will integrate all the functionalities it has.

It would also mean better support and maintenance.

KywoSkylake commented 5 years ago

@SteveClement well good to know. I think this would help. But anyway if someone use this script, they know what to do, if they get the same error :)