aboutsummaryrefslogtreecommitdiff
path: root/net/modemmanager/files/modemmanager.init
blob: 45a2ba11a7a12035939770df70d24bd4e20b3ff3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh /etc/rc.common
# Copyright (C) 2016 Aleksander Morgado <aleksander@aleksander.es>

USE_PROCD=1
START=70

stop_service() {
	# Load common utils
	. /etc/modemmanager/modemmanager.common
	# Set all configured interfaces as unavailable
	mm_cleanup_interfaces
}

start_service() {
	# Load common utils
	. /etc/modemmanager/modemmanager.common

	# Always make sure the rundir exists
	mkdir -m 0755 -p "${MODEMMANAGER_RUNDIR}"

	# Initially set all configured interfaces as unavailable
	mm_cleanup_interfaces

	# Report cached events (will wait for MM to be launched)
	( mm_report_events_from_cache ) >/dev/null 2>&1 &

	# Setup ModemManager service
	procd_open_instance
	procd_set_param command /usr/sbin/ModemManager
	procd_set_param respawn "${respawn_threshold:-3600}" "${respawn_timeout:-5}" "${respawn_retry:-5}"
	procd_set_param pidfile "${MODEMMANAGER_PID_FILE}"
	procd_close_instance
}