From f30326f76e2f47ad291840292c4d3fd59e44e6a9 Mon Sep 17 00:00:00 2001
From: Eric Cano <Eric.Cano@cern.ch>
Date: Tue, 14 Aug 2018 08:40:45 +0200
Subject: [PATCH] Revert "Added an "Easter egg": the legacy castor version
 command line :)"

This reverts commit 5cda9ec65a43d1e0c2f434a4ef57da9f21136f07.
---
 cmdline/CMakeLists.txt |  4 ----
 cmdline/castor.c       | 42 ------------------------------------------
 2 files changed, 46 deletions(-)
 delete mode 100644 cmdline/castor.c

diff --git a/cmdline/CMakeLists.txt b/cmdline/CMakeLists.txt
index d9a893640e..adad349308 100644
--- a/cmdline/CMakeLists.txt
+++ b/cmdline/CMakeLists.txt
@@ -47,11 +47,7 @@ add_executable(cta-wfe-test EosCtaStub.cpp)
 target_link_libraries(cta-wfe-test cryptopp ctacommon XrdSsiPbEosCta XrdSsi-4 XrdSsiLib XrdUtils)
 set_property (TARGET cta-wfe-test APPEND PROPERTY INSTALL_RPATH ${PROTOBUF3_RPATH})
 
-# Easter egg: the castor version tool
-add_executable(castor castor.c)
-
 install(TARGETS cta-admin DESTINATION usr/bin)
 install(TARGETS cta-wfe-test DESTINATION usr/bin)
 install(FILES cta-cli.conf DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/cta)
-install(TARGETS castor DESTINATION usr/bin)
 
diff --git a/cmdline/castor.c b/cmdline/castor.c
deleted file mode 100644
index 4f0e0bf292..0000000000
--- a/cmdline/castor.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/*!
- * @project        The CERN Tape Archive (CTA)
- * @brief          Command-line tool for CTA Admin commands
- * @description    CTA Admin command using Google Protocol Buffers and XRootD SSI transport
- * @copyright      Copyright 2017 CERN
- * @license        This program is free software: you can redistribute it and/or modify
- *                 it under the terms of the GNU General Public License as published by
- *                 the Free Software Foundation, either version 3 of the License, or
- *                 (at your option) 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 General Public License for more details.
- *
- *                 You should have received a copy of the GNU General Public License
- *                 along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-/* This is an "Easter egg": the former castor version tool */
-#include <stdlib.h>
-#include <stdio.h>
-#include <unistd.h>
-
-#include "version.h"
-
-int main(int argc, char ** argv) {
-  int c;
-
-  while ((c = getopt (argc, argv, "hv")) != EOF) {
-    switch (c) {
-    case 'v':
-      printf ("CASTOR 3.0 - CTA %s\n", CTA_VERSION);
-      break;
-    case 'h':
-    default:
-      printf ("usage : %s [-v] [-h]\n", argv[0]);
-      break;
-    }
-  }
-  exit (0);
-}
-- 
GitLab