From c546fee3fa3f3f1430bd289c51fc6a9e1a1030bf Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 7 Jul 2020 20:49:26 +0200 Subject: Better dir --- src/gitjoe-addsshkey.pl | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 src/gitjoe-addsshkey.pl (limited to 'src/gitjoe-addsshkey.pl') diff --git a/src/gitjoe-addsshkey.pl b/src/gitjoe-addsshkey.pl new file mode 100755 index 0000000..d7e0477 --- /dev/null +++ b/src/gitjoe-addsshkey.pl @@ -0,0 +1,28 @@ +#!/usr/local/bin/perl + +use strict; +use warnings; +use Term::ANSIColor; + +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 = '/usr/home/' . $usr . '/'; + open(my $fh, '>>:encoding(UTF-8)', $home_dir . '.ssh/authorized_keys'); + print $fh "$sshkey\n"; + close($fh); + exit; +} + +main(); + +__END__ -- cgit v1.2.3