ssm-services/init.d/mdev

11 lines
189 B
Plaintext
Raw Normal View History

2013-09-28 23:32:39 +00:00
#!/usr/bin/env watchman
2014-08-01 01:30:28 +00:00
service_type='oneshot'
2015-06-18 09:38:49 +00:00
service_command='/usr/bin/mdev'
2015-09-04 13:47:37 +00:00
service_args=( -s )
2013-09-28 23:32:39 +00:00
2015-09-04 13:47:37 +00:00
post_start() {
2013-09-28 23:32:39 +00:00
echo "Enabling hotplug..."
2014-08-01 01:27:13 +00:00
echo /bin/mdev > /proc/sys/kernel/hotplug
}