aboutsummaryrefslogtreecommitdiff
path: root/rc.boot
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-01-15 22:41:50 +0300
committerCem Keylan <cem@ckyln.com>2020-01-15 22:41:50 +0300
commit8ff69e2800b4a4cda10efe99027a049fa6fcbdae (patch)
tree8dd91adcbac787abe08ca807c7c057a67da12a7c /rc.boot
parenta6413a4595e3b22e4c895baed40e97aa44fdfd24 (diff)
downloadinit-8ff69e2800b4a4cda10efe99027a049fa6fcbdae.tar.gz
Echo the file being executed
Diffstat (limited to 'rc.boot')
-rwxr-xr-xrc.boot3
1 files changed, 2 insertions, 1 deletions
diff --git a/rc.boot b/rc.boot
index 92dbf1b..40e74ed 100755
--- a/rc.boot
+++ b/rc.boot
@@ -157,7 +157,8 @@ out "Loading sysctl settings..."; {
out "Running boot hooks..."
set +f
for file in /etc/init/*.boot ; do
- [ -f "$file" ] && . "$file"
+ [ -f "$file" ] && \
+ out "Running $file" && . "$file"
done
out "Running rc.local..."; {