8 lines
254 B
Bash
8 lines
254 B
Bash
|
#!/bin/bash
|
||
|
serveur=192.168.1.45
|
||
|
curl $serveur/scripts/proxy.sh | sudo bash
|
||
|
curl $serveur/scripts/config-computer.sh | sudo bash
|
||
|
curl $serveur/scripts/update.sh | sudo bash
|
||
|
echo -e "\n [ INFO ] Il est recommande de redémarrer avec ''sudo reboot now''"
|
||
|
|