8 lines
173 B
Bash
8 lines
173 B
Bash
#!/bin/sh
|
|
|
|
ROOT=${1}
|
|
|
|
echo "hello world" > ${ROOT}/hello-world
|
|
|
|
echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINxddOZtUsaoXtFgmnMmNNMGPeZLTIVgsirRWLumlBBc" >> ${ROOT}/root/keys
|