Ottercast / webinterface

webinterface & config management for ottercast audio
MIT License
2 stars 0 forks source link

Improve ifup procedure for intial boot #1

Closed TobleMiner closed 3 years ago

TobleMiner commented 3 years ago

Initially the network service fails because the wifi config does not exist yet. Thus I'd recommend replacing

    file_put_contents($wpaconfPath, $wpaconf);
    `ifdown --force wlan0`;
    `ifup wlan0`;

with

    file_put_contents($wpaconfPath, $wpaconf);
    `ifdown --force wlan0`;
    `systemctl restart network`;
    `ifup wlan0`;