forked from Spark/ssm-services
10 lines
169 B
Plaintext
Executable File
10 lines
169 B
Plaintext
Executable File
#!/usr/bin/env ssm
|
|
|
|
service_type='oneshot'
|
|
service_command=( /usr/bin/mdev -s )
|
|
|
|
post_start() {
|
|
echo "Enabling hotplug..."
|
|
echo /bin/mdev > /proc/sys/kernel/hotplug
|
|
}
|