Skip to content

Commit f9c0645

Browse files
committed
falter-common: can't clash with rc.local from base-files
1 parent 6208791 commit f9c0645

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh /etc/rc.common
2+
3+
# The "done" service calls /etc/rc.local at 95, so let's go right after
4+
START=96
5+
6+
boot() {
7+
[ -d /etc/rc.local.d ] && {
8+
for file in /etc/rc.local.d/*; do
9+
test -f "$file" && . "$file"
10+
done
11+
}
12+
}

packages/falter-common/files/etc/rc.local

-11
This file was deleted.

0 commit comments

Comments
 (0)