aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer
diff options
context:
space:
mode:
Diffstat (limited to 'lib/keyringer')
-rw-r--r--lib/keyringer/actions/init.rb28
-rw-r--r--lib/keyringer/checker.rb2
-rw-r--r--lib/keyringer/console.rb2
3 files changed, 30 insertions, 2 deletions
diff --git a/lib/keyringer/actions/init.rb b/lib/keyringer/actions/init.rb
new file mode 100644
index 0000000..1aa6de1
--- /dev/null
+++ b/lib/keyringer/actions/init.rb
@@ -0,0 +1,28 @@
+#!/usr/bin/env ruby
+#
+# Keyringer secret management system.
+#
+# Copyright (C) 2011 Keyringer Development Team.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+module Keyringer
+ module Actions
+ class Init
+ def initialize
+ end
+ end
+ end
+end
diff --git a/lib/keyringer/checker.rb b/lib/keyringer/checker.rb
index 3feb98b..5369b95 100644
--- a/lib/keyringer/checker.rb
+++ b/lib/keyringer/checker.rb
@@ -21,6 +21,8 @@
module Keyringer
class Checker
def initialize
+ path = Keyring::UserConfig.instance.path
+ raise "No path configuration for #{$keyring} keyring." if path.nil?
end
end
end
diff --git a/lib/keyringer/console.rb b/lib/keyringer/console.rb
index 08be3be..e3b6fae 100644
--- a/lib/keyringer/console.rb
+++ b/lib/keyringer/console.rb
@@ -19,8 +19,6 @@
#
module Keyringer
- require 'singleton'
-
class Console
include Singleton
def initialize