You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
307 B
14 lines
307 B
3 years ago
|
ifdef BUILDDIR
|
||
|
|
||
|
include $(BUILDDIR)/distcfg.mk
|
||
|
|
||
|
# prepare the provided public SSH key to be carried over into the image
|
||
|
all: SSH_DIR = $(BUILDDIR)/files/root/.ssh
|
||
|
all:
|
||
|
@if [ -s "$(SSH_KEY)" ]; then \
|
||
|
mkdir -pm0700 "$(SSH_DIR)"; \
|
||
|
install -pm0600 "$(SSH_KEY)" "$(SSH_DIR)/authorized_keys"; \
|
||
|
fi
|
||
|
|
||
|
endif
|