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.
|
#!/bin/bash
|
|
|
|
#Start cron service
|
|
service cron start
|
|
|
|
#Activation du module rewrite d'apache
|
|
a2enmod rewrite && service apache2 restart && service apache2 stop
|
|
|
|
#Lancement du service apache au premier plan
|
|
/usr/sbin/apache2ctl -D FOREGROUND
|