Explorar el Código

Fixed music not playing in case of brutal shutdown

Brendan Abolivier hace 8 años
padre
commit
951f2676bf
Firmado por: Brendan Abolivier <contact@brendanabolivier.com> ID clave GPG: 8EF1500759F70623
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5
    0
      welcomehome

+ 5
- 0
welcomehome Ver fichero

@@ -117,6 +117,11 @@ init() {
117 117
     # Set volume to the right value
118 118
     set_volume $volume
119 119
 
120
+    # Removing lock file in case of ungraceful shutdown
121
+    if [ ! -f $lock_file ]; then
122
+        rm $lock_file
123
+    fi
124
+
120 125
     log "Initialisation complete"
121 126
 }
122 127