summaryrefslogtreecommitdiffstats
path: root/services/Makefile
diff options
context:
space:
mode:
authortv <tv@nomic.retiolum>2013-01-24 23:40:05 +0100
committertv <tv@nomic.retiolum>2013-01-24 23:40:05 +0100
commit245a815267928096ea18d9d49cd395b87a7af175 (patch)
tree1aaba258abf30eafec4dd29b84edd7c1a5d4e842 /services/Makefile
parent17ad911ae984843d467f8492b0644227715f203a (diff)
services: minimal services.txt-over-ssh provider (twisted)
Diffstat (limited to 'services/Makefile')
-rw-r--r--services/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/services/Makefile b/services/Makefile
new file mode 100644
index 00000000..a68f095d
--- /dev/null
+++ b/services/Makefile
@@ -0,0 +1,14 @@
+help:;@cat Makefile
+
+export authorized_keys_file := authorized_keys
+export services_file := services.txt
+export host_key_file := test.key
+
+test-client:
+ ssh localhost -p 1337 2>/dev/null
+
+test-server:
+ python test.py
+
+$(host_key_file):
+ ssh-keygen -t rsa -P '' -f $@