forked from kiss-community/repo
10 lines
135 B
Bash
Executable File
10 lines
135 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
mkdir -p "$1/etc/runit"
|
|
|
|
for f in inittab rc.boot; do
|
|
install -m 644 "$f" "$1/etc"
|
|
done
|
|
|
|
cp -R stages "$1/etc/runit"
|