mirror of
https://codeberg.org/kiss-community/repo
synced 2025-01-31 20:02:31 -07:00
9 lines
100 B
Bash
Executable File
9 lines
100 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
install -dm 755 "$1/etc"
|
|
|
|
for f in inittab; do
|
|
install -m 644 "$f" "$1/etc"
|
|
done
|
|
|