11 lines
234 B
Bash
11 lines
234 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
db_settitle open-infrastructure-openssh-tools/title
|
|
db_input high open-infrastructure-openssh-tools/ssh-authorizedkeys-command "${SSH_AUTHORIZEDKEYS_COMMAND}" || true
|
|
db_go
|
|
|
|
db_stop
|