diff options
author | root <root@darth_serious> | 2013-02-14 13:06:07 +0100 |
---|---|---|
committer | root <root@darth_serious> | 2013-02-14 13:06:07 +0100 |
commit | 62b197ea0604cf9d785bf67eefcf7be00daa92b9 (patch) | |
tree | 63632a2d15cff280d3640eed9818a9a098ed35d5 /services | |
parent | c5953301c721096e97ce7e83037f0da85ee4eaa7 (diff) |
create routine to update ssh_authorized_keys via ssh
Diffstat (limited to 'services')
-rw-r--r-- | services/Makefile | 5 | ||||
-rwxr-xr-x | services/bin/update-services-pubkeys | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/services/Makefile b/services/Makefile index 37931f47..a4db7df1 100644 --- a/services/Makefile +++ b/services/Makefile @@ -7,7 +7,8 @@ export services_home := /opt/services .PHONY: authorized_keys -service-user: $(services_home)/services.txt $(services_home)/.ssh/authorized_keys + +service-user: $(services_home)/services.txt ssh_authorized_keys @echo 'also make sure that the user is created: make create-service-user' create-service-user: @@ -15,6 +16,8 @@ create-service-user: rmdir $(services_home) useradd -m -r -l -f -1 -d $(services_home) services +ssh_authorized_keys: $(services_home)/.ssh/authorized_keys + $(services_home)/.ssh: mkdir $@ chown services:services $@ diff --git a/services/bin/update-services-pubkeys b/services/bin/update-services-pubkeys new file mode 100755 index 00000000..6a658607 --- /dev/null +++ b/services/bin/update-services-pubkeys @@ -0,0 +1,5 @@ +#!/bin/sh +KREBS_ROOT="${KREBS_ROOT:-/krebs}" +ssh $1 <<EOF +sh -eufc "cd $KREBS_ROOT;git pull origin master;make -C $KREBS_ROOT/services ssh_authorized_keys" +EOF |