summaryrefslogtreecommitdiff
path: root/bin/gitlab-keys
diff options
context:
space:
mode:
authorPatrick Bajao <ebajao@gitlab.com>2019-08-23 14:15:33 +0800
committerPatrick Bajao <ebajao@gitlab.com>2019-08-23 14:15:33 +0800
commitcb9b5447eb8cb8ae6535ebf90e5a5e9e724721bd (patch)
tree5fcc947f3c98c9021d4a21a338bf462ccba5d84b /bin/gitlab-keys
parent27ac932878d117d1cbffc0d190ed179f3353886c (diff)
downloadgitlab-shell-pb-remove-gitlab-keys.tar.gz
Remove gitlab-keys scriptpb-remove-gitlab-keys
Diffstat (limited to 'bin/gitlab-keys')
-rwxr-xr-xbin/gitlab-keys27
1 files changed, 0 insertions, 27 deletions
diff --git a/bin/gitlab-keys b/bin/gitlab-keys
deleted file mode 100755
index 9eb1950..0000000
--- a/bin/gitlab-keys
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env ruby
-
-require_relative '../lib/gitlab_init'
-
-#
-# GitLab Keys shell. Add/remove keys from ~/.ssh/authorized_keys
-#
-# Ex.
-# /bin/gitlab-keys add-key key-782 "ssh-rsa AAAAx321..."
-#
-# printf "key-782\tssh-rsa AAAAx321...\n" | /bin/gitlab-keys batch-add-keys
-#
-# /bin/gitlab-keys rm-key key-23 "ssh-rsa AAAAx321..."
-#
-# /bin/gitlab-keys list-keys
-#
-# /bin/gitlab-keys clear
-#
-
-require File.join(ROOT_PATH, 'lib', 'gitlab_keys')
-
-# Return non-zero if command execution was not successful
-if GitlabKeys.new.exec
- exit 0
-else
- exit 1
-end