@rubytech/taskmaster 1.26.2 → 1.26.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build-info.json +3 -3
- package/package.json +1 -1
- package/scripts/install.sh +4 -0
package/dist/build-info.json
CHANGED
package/package.json
CHANGED
package/scripts/install.sh
CHANGED
|
@@ -150,6 +150,10 @@ if [ "$PLATFORM" = "linux" ]; then
|
|
|
150
150
|
echo ""
|
|
151
151
|
echo "Platform setup..."
|
|
152
152
|
|
|
153
|
+
# SSH — enable so the device is reachable for remote administration
|
|
154
|
+
as_root systemctl enable --now ssh 2>/dev/null || true
|
|
155
|
+
echo " SSH enabled"
|
|
156
|
+
|
|
153
157
|
# ffmpeg (PTT voice note normalization)
|
|
154
158
|
as_root apt-get install -y ffmpeg >/dev/null 2>&1 \
|
|
155
159
|
&& echo " ffmpeg installed" \
|