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.

39 lines
931 B

  1. #!/bin/bash
  2. # Allo-GG
  3. # Installation de Allo-GG sur un Pi Zero avec Rasbian.
  4. # Installation des dependances
  5. cd
  6. apt-get -y update
  7. apt-get -y upgrade
  8. apt-get -y install apache2 php7.0 git-core vim htop
  9. # Installation de wiringPi
  10. git clone git://git.drogon.net/wiringPi
  11. cd wiringPi
  12. git pull origin
  13. ./build
  14. cd
  15. # Création de l'utilisateur
  16. useradd --create-home allo-gg
  17. adduser allo-gg sudo
  18. echo "Merci de choisir un mot de passe pour Allo-GG :"
  19. passwd allo-gg
  20. # Suppression de l'utilisateur par defaut
  21. deluser --remove-home pi
  22. # Installation de Allo-GG
  23. chown -R allo-gg:allo-gg /var/www/html/
  24. su -l allo-gg -c "git clone https://github.com/heuzef/Allo-GG.git /var/www/html/"
  25. # Lancement automatique du script de demarrage
  26. crontab -l -u allo-gg | echo '@reboot /bin/bash /var/www/html/scripts/boot.sh &' | crontab -u allo-gg -
  27. echo "----------------------------"
  28. echo "Install done ! Rebooting ..."
  29. sleep 3
  30. sh scripts/reboot.sh