aboutsummaryrefslogtreecommitdiffstats
path: root/src/gitjoe-addsshkey.pl
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-08 16:43:14 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-08 16:43:14 +0200
commitf0cb40d9e4b8d3285ac7125fb40433d65fae172e (patch)
treedd4f02807e2744c2f21cef41d717c1778aa7d479 /src/gitjoe-addsshkey.pl
parentFile owner fixes (diff)
downloadjoe-scripts-f0cb40d9e4b8d3285ac7125fb40433d65fae172e.tar.gz
joe-scripts-f0cb40d9e4b8d3285ac7125fb40433d65fae172e.tar.bz2
joe-scripts-f0cb40d9e4b8d3285ac7125fb40433d65fae172e.tar.xz
joe-scripts-f0cb40d9e4b8d3285ac7125fb40433d65fae172e.tar.zst
joe-scripts-f0cb40d9e4b8d3285ac7125fb40433d65fae172e.zip
Directory tree rework
Diffstat (limited to 'src/gitjoe-addsshkey.pl')
-rwxr-xr-xsrc/gitjoe-addsshkey.pl28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/gitjoe-addsshkey.pl b/src/gitjoe-addsshkey.pl
deleted file mode 100755
index d7e0477..0000000
--- a/src/gitjoe-addsshkey.pl
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/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__