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.

38 lines
896 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. # Suppression de l'utilisateur par defaut
  19. deluser -f --remove-home pi
  20. # Installation de Allo-GG
  21. rm -vf /var/www/html/index.html
  22. chown -R allo-gg:allo-gg /var/www/html/
  23. su -l allo-gg -c "git clone https://github.com/heuzef/Allo-GG.git /var/www/html/"
  24. # Lancement automatique du script de demarrage
  25. echo '@reboot /bin/bash /var/www/html/scripts/boot.sh &' | crontab -u allo-gg -
  26. echo "----------------------------"
  27. echo "Install done ! Rebooting ..."
  28. sleep 3
  29. sh /bin/bash /var/www/html/scripts/reboot.sh