Skip to content

Instantly share code, notes, and snippets.

@petrosagg
Created April 3, 2018 05:39
Show Gist options
  • Select an option

  • Save petrosagg/d4344e567c1a9d3f560fd28e78a13a37 to your computer and use it in GitHub Desktop.

Select an option

Save petrosagg/d4344e567c1a9d3f560fd28e78a13a37 to your computer and use it in GitHub Desktop.
utility script to stop ModemManager from inside a resin container
#!/bin/sh
set -o errexit
export DBUS_SYSTEM_BUS_ADDRESS=unix:path=/host/run/dbus/system_bus_socket
dbus-send \
--system \
--print-reply \
--dest=org.freedesktop.systemd1 \
/org/freedesktop/systemd1 \
org.freedesktop.systemd1.Manager.StopUnit 'string:ModemManager.service' 'string:replace'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment