From 68f6bdf0f88322867b35a6ae35a0c4c3ea641884 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Sat, 3 May 2014 10:54:55 +0200 Subject: Rename to ctls. --- src/.erlang | 4 ++-- src/Makefile | 2 +- src/catlfish | 5 ----- src/catlfish.erl | 12 ------------ src/ctls | 5 +++++ src/ctls.erl | 12 ++++++++++++ 6 files changed, 20 insertions(+), 20 deletions(-) delete mode 100755 src/catlfish delete mode 100644 src/catlfish.erl create mode 100755 src/ctls create mode 100644 src/ctls.erl (limited to 'src') diff --git a/src/.erlang b/src/.erlang index 406b099..b0147e0 100644 --- a/src/.erlang +++ b/src/.erlang @@ -1,5 +1,5 @@ -%% Erlang init file for catlfish (in Emacs -*- erlang -*- mode) -%%io:format("Inititaing for catlfish~n"). +%% Erlang init file for ctls (in Emacs -*- erlang -*- mode) +%%io:format("Inititaing for ctls~n"). code:add_pathz("https"). code:add_pathz("merkletree"). code:add_pathz("x509"). diff --git a/src/Makefile b/src/Makefile index 9650e25..62548f6 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,6 +1,6 @@ ## TODO: Consider using 'rebar' instead of Make. -MODULES = catlfish +MODULES = ctls all: subdirs $(MODULES:%=%.beam) diff --git a/src/catlfish b/src/catlfish deleted file mode 100755 index 72102d5..0000000 --- a/src/catlfish +++ /dev/null @@ -1,5 +0,0 @@ -#! /usr/bin/env escript - -main(_) -> - io:format("Hello catlfish!\n"), - catlfish:start(). diff --git a/src/catlfish.erl b/src/catlfish.erl deleted file mode 100644 index a8c5a86..0000000 --- a/src/catlfish.erl +++ /dev/null @@ -1,12 +0,0 @@ -%% This is a CA transparency log. - -%% In order to find https_server and other required modules, a couple -%% of subdirectories need to be added to the Erlang path -%% (code:add_pathz/1). This can be done through an ~/.erlang file. - --module('catlfish'). --export([start/0]). - -start() -> - io:format("Starting catlfish~n"), - https_server:start(). diff --git a/src/ctls b/src/ctls new file mode 100755 index 0000000..c3169b8 --- /dev/null +++ b/src/ctls @@ -0,0 +1,5 @@ +#! /usr/bin/env escript + +main(_) -> + io:format("Hello ctls!\n"), + ctls:start(). diff --git a/src/ctls.erl b/src/ctls.erl new file mode 100644 index 0000000..9c4c9b4 --- /dev/null +++ b/src/ctls.erl @@ -0,0 +1,12 @@ +%% This is a CA transparency log. + +%% In order to find https_server and other required modules, a couple +%% of subdirectories need to be added to the Erlang path +%% (code:add_pathz/1). This can be done in an ~/.erlang file. + +-module('ctls'). +-export([start/0]). + +start() -> + io:format("Starting ctls~n"), + https_server:start(). -- cgit v1.1