mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-22 15:20:06 -07:00
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"
|