Skip to content

Commit

Permalink
0.1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
philippe44 committed Dec 4, 2017
1 parent b9f97a9 commit e31e868
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aircast/src/aircast.c
Expand Up @@ -684,11 +684,11 @@ static void sighandler(int signum) {
if (p->InUse && p->State == PLAYING) CastStop(p->CastCtx);
}
LOG_INFO("forced exit", NULL);
exit(EXIT_SUCCESS);
exit(0);
}

Stop();
exit(EXIT_SUCCESS);
exit(0);
}


Expand Down
13 changes: 13 additions & 0 deletions airupnp.service
@@ -0,0 +1,13 @@
[Unit]
Description=AirUPnP bridge
After=network-online.target
Wants=network-online.target

[Service]
Type=forking
ExecStart=/var/lib/airconnect/airupnp-arm -m squeezebox -l 1000:2000 -z -f /var/log/airupnp.log -x /var/lib/airconnect/config-upnp.xml
Restart=on-failure
RestartSec=30

[Install]
WantedBy=multi-user.target
4 changes: 2 additions & 2 deletions airupnp/src/airupnp.c
Expand Up @@ -1028,11 +1028,11 @@ static void sighandler(int signum) {
if (p->InUse && p->State == PLAYING) AVTStop(p);
}
LOG_INFO("forced exit", NULL);
exit(EXIT_SUCCESS);
exit(0);
}

Stop();
exit(EXIT_SUCCESS);
exit(0);
}


Expand Down
Binary file modified bin/aircast-arm
Binary file not shown.
Binary file modified bin/aircast-osx-multi
Binary file not shown.
Binary file modified bin/aircast-win.exe
Binary file not shown.
Binary file modified bin/aircast-x86
Binary file not shown.
Binary file modified bin/aircast-x86-64
Binary file not shown.
Binary file modified bin/airupnp-arm
Binary file not shown.
Binary file modified bin/airupnp-osx-multi
Binary file not shown.
Binary file modified bin/airupnp-win.exe
Binary file not shown.
Binary file modified bin/airupnp-x86
Binary file not shown.
Binary file modified bin/airupnp-x86-64
Binary file not shown.

0 comments on commit e31e868

Please sign in to comment.