]> gitweb.fluxo.info Git - keyringer.git/commitdiff
Canary will be coded in a separate branch
authorSilvio Rhatto <rhatto@riseup.net>
Tue, 25 Feb 2014 18:56:54 +0000 (15:56 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Tue, 25 Feb 2014 18:56:54 +0000 (15:56 -0300)
ChangeLog
lib/keyringer/actions/canary [deleted file]

index 615902db570bfac00b649cb8ec329468be9cc24c..dd2dc8dde1457d8fa43c95b9fb9c26662af63c39 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,6 @@
-2014-02-24 - Silvio Rhatto  <rhatto@riseup.net>
+2014-02-25 - Silvio Rhatto  <rhatto@riseup.net>
 
-       Starting to code new actions: check (#39) and canary (#40)
+       New action: check (#39)
 
        Enhanced secret finder at keyringer_get_file and on find action
 
diff --git a/lib/keyringer/actions/canary b/lib/keyringer/actions/canary
deleted file mode 100755 (executable)
index b00926d..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/bash
-#
-# Keyringer's canary warrant implementation.
-#
-# Inspired by:
-#
-#   https://en.wikipedia.org/wiki/Warrant_canary
-#   http://www.rsync.net/resources/notices/canary.txt
-#
-# A canary is:
-#
-#   - Generated using any combination of public available RSS
-#     feeds configured by user preferences.
-#
-#   - Configured to generate new information once a day.
-#     If you run it more than that interval, no canary will
-#     be updated.
-#
-# A canary is stored:
-#
-#   - In a folder called "canaries" followed by the user ID.
-#
-#   - With an addiditonal timestamp stored plain+signed so it
-#     can be easily checked.
-#
-#   - Can optionally be uploaded (encrypted or plain+signed) to a
-#     remote url via scp.
-#
-#   - Can optinally be included in another git repository
-#     (encrypted or plain+signed), commited and pushed
-#     to a remote repository (ikiwiki instance, etc).
-#
-# How to run:
-#
-#  - First, "keyringer <keyring> preferences edit # basic canary preferences".
-#
-#  - Then, add the following at your ~/.profile or wherever you want your canary
-#    be called from: "keyringer <keyring> canary".
-
-# Load functions
-LIB="`dirname $0`/../functions"
-source "$LIB" || exit 1
-
-# TODO: code!
-echo "Not implemented :("
-exit 1