20 lines
253 B
Bash
20 lines
253 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Exit on any errors
|
||
|
set -e
|
||
|
|
||
|
DIR="$(dirname "$0")"
|
||
|
|
||
|
. "$DIR"/func.sh
|
||
|
|
||
|
depcheck
|
||
|
|
||
|
kextparam="console=tty0" kflav="full" size=2G setup
|
||
|
|
||
|
addpkg openssh-server
|
||
|
addtty tty0
|
||
|
addsvc bundle.core bundle.net sshd.1
|
||
|
addsshkey "$DIR"/id_ed25519.pub
|
||
|
|
||
|
pack
|