forked from kiss-community/repo
9 lines
108 B
Bash
Executable File
9 lines
108 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
install -dm 755 "$1/etc"
|
|
|
|
for f in inittab rc.boot; do
|
|
install -m 644 "$f" "$1/etc"
|
|
done
|
|
|