/lib/systemd/system/rild.service is in lxc-android-config 0.230+16.04.20160328-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | [Unit]
Description=Wait for rild in the Android container to become ready
After=lxc-android-config.service
[Service]
Type=oneshot
TimeoutStartSec=80
# loop and then exit, if rild isnt up after 80 sec
# it is likely not starting at all (or not there)
ExecStart=/bin/sh -ec 'while [ ! -e /dev/socket/rild ]; do sleep 0.1; done'
|