-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Cleaned up old armv6 references - Updated to s6 v3 format for service launch - Altered run command to use -Z for non-interactive launch (this was missing piece for my primary issue in upgrading) - Simplified binary naming in dockerfile and launch scripts - Enhanced logging verbosity with extra details and formatting
- Loading branch information
1 parent
2451aa5
commit 74eb7e6
Showing
13 changed files
with
44 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/with-contenv bash | ||
|
||
echo "[AirConnect-AIRCAST] Launching AIRCAST ..." | ||
# Check for VAR - default, kill, custom | ||
if [ -z "$AIRCAST_VAR" ]; then | ||
echo "[AirConnect-AIRCAST] AIRCAST_VAR is NOT present, launching with standard launch variables" | ||
exec /usr/bin/aircast-docker -Z | ||
elif [ "$AIRCAST_VAR" = "kill" ]; then | ||
echo "[AirConnect-AIRCAST] AIRCAST_VAR set to kill, skipping aircast service launch" | ||
exit 0 | ||
else | ||
echo "[AirConnect-AIRCAST] AIRCAST_VAR is present, launching with custom launch variables: $AIRCAST_VAR" | ||
exec /usr/bin/aircast-docker -Z $AIRCAST_VAR | ||
fi | ||
|
||
echo "[AirConnect-AIRCAST] AIRCAST launch sequence complete ..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
oneshot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/etc/s6-overlay/s6-rc.d/svc-aircast/run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/with-contenv bash | ||
|
||
echo "[AirConnect-AIRUPNP] Launching AIRUPNP ..." | ||
# Check for VAR - default, kill, custom | ||
if [ -z "$AIRUPNP_VAR" ]; then | ||
echo "[AirConnect-AIRUPNP] AIRUPNP_VAR is NOT present, launching with standard launch variables" | ||
exec /usr/bin/airupnp-docker -Z -l 1000:2000 | ||
elif [ "$AIRUPNP_VAR" = "kill" ]; then | ||
echo "[AirConnect-AIRUPNP] AIRUPNP_VAR set to kill, skipping AIRUPNP service launch" | ||
exit 0 | ||
else | ||
echo "[AirConnect-AIRUPNP] AIRUPNP_VAR is present, launching with custom launch variables: $AIRUPNP_VAR" | ||
exec /usr/bin/airupnp-docker -Z $AIRUPNP_VAR | ||
fi | ||
|
||
echo "[AirConnect-AIRUPNP] AIRUPNP launch sequence complete ..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
oneshot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/etc/s6-overlay/s6-rc.d/svc-airupnp/run |
Empty file.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.