aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-06 17:31:29 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-06 17:31:29 +0200
commitec79a53cba205168bf34d8de2907dc3116b2d2a8 (patch)
tree5964b0d4c7e4761a216f64710017be8102c1c830
parentNew script (diff)
downloadjoe-scripts-ec79a53cba205168bf34d8de2907dc3116b2d2a8.tar.gz
joe-scripts-ec79a53cba205168bf34d8de2907dc3116b2d2a8.tar.bz2
joe-scripts-ec79a53cba205168bf34d8de2907dc3116b2d2a8.tar.xz
joe-scripts-ec79a53cba205168bf34d8de2907dc3116b2d2a8.tar.zst
joe-scripts-ec79a53cba205168bf34d8de2907dc3116b2d2a8.zip
Trying that one
-rwxr-xr-xgitjoe-addsshkey.pl21
-rwxr-xr-xgitjoe-newuser.pl3
-rwxr-xr-xgitjoe-rmuser.pl1
3 files changed, 24 insertions, 1 deletions
diff --git a/gitjoe-addsshkey.pl b/gitjoe-addsshkey.pl
index 9f219b9..7dfd5cc 100755
--- a/gitjoe-addsshkey.pl
+++ b/gitjoe-addsshkey.pl
@@ -3,3 +3,24 @@
use strict;
use warnings;
+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 = $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__
diff --git a/gitjoe-newuser.pl b/gitjoe-newuser.pl
index bd57855..dfc7ad7 100755
--- a/gitjoe-newuser.pl
+++ b/gitjoe-newuser.pl
@@ -8,7 +8,7 @@ sub main {
my $argc = $#ARGV + 1;
if ($argc < 3) {
print colored("Failed!\n", 'bold red')
- . "Missing argument, 2 needed "
+ . "Missing argument, 3 needed "
. colored("[user - password - ssh public key]", 'bold')
. "\n";
exit 1;
@@ -68,6 +68,7 @@ EOF"
'-c',
'/bin/chmod -v 600 ' . $home_dir . '.ssh/authorized_keys'
);
+ exit;
}
main();
diff --git a/gitjoe-rmuser.pl b/gitjoe-rmuser.pl
index 965ed7a..944745f 100755
--- a/gitjoe-rmuser.pl
+++ b/gitjoe-rmuser.pl
@@ -23,6 +23,7 @@ y
y
EOF"
);
+ exit;
}
main();