From 361b43dd712750acb2494f848a8102a442ff1f75 Mon Sep 17 00:00:00 2001 From: Joe Date: Fri, 6 May 2022 14:51:55 +0200 Subject: update --- src/gitjoe/addsshkey.pl | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100755 src/gitjoe/addsshkey.pl (limited to 'src/gitjoe/addsshkey.pl') diff --git a/src/gitjoe/addsshkey.pl b/src/gitjoe/addsshkey.pl deleted file mode 100755 index 431ce7d..0000000 --- a/src/gitjoe/addsshkey.pl +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/local/bin/perl - -use strict; -use warnings; -use Term::ANSIColor; -use constant HOME_DIR => '/usr/local/git/'; - -sub main -{ - my $argc = $#ARGV + 1; - if ($argc < 2) { - print colored("Failed!\n", 'bold red') - . "Missing argument, 2 needed " - . colored("[user - ssh public key]", 'bold') - . "\n"; - exit 1; - } - my $usr = $ARGV[0]; - my $sshkey = "no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty "; - $sshkey = $sshkey . $ARGV[1]; - my $home_dir = HOME_DIR . $usr . '/'; - open(my $fh, '>>:encoding(UTF-8)', $home_dir . '.ssh/authorized_keys'); - print $fh "$sshkey\n"; - close($fh); - print "Added new ssh key for user " . colored($usr, 'bold green') . ".\n"; - exit; -} - -main(); - -__END__ -- cgit v1.2.3