1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#!/usr/local/bin/perl
use strict;
use warnings;
use Term::ANSIColor;
use constant SCRIPTS_DIR => '/root/scripts/src/';
use constant SSH_BOY => 'root@jozanleclerc.xyz';
sub main {
my $argc = $#ARGV + 1;
if ($argc < 1) {
print colored("Failed!\n", 'bold red')
. 'Missing argument, at least 2 needed '
. colored("[script-invoke - (argument(s))]\n", 'bold');
exit 1;
}
my $called_script = '';
my $argv_line = '';
if (
$ARGV[0] eq 'addsshkey' ||
$ARGV[0] eq 'adduser' ||
$ARGV[0] eq 'chdesc' ||
$ARGV[0] eq 'chowner' ||
$ARGV[0] eq 'chpublic' ||
$ARGV[0] eq 'newrepo' ||
$ARGV[0] eq 'rmrepo' ||
$ARGV[0] eq 'rmuser'
) {
$called_script = SCRIPTS_DIR . 'gitjoe/' . $ARGV[0] . '.pl';
}
elsif (
$ARGV[0] eq "update-gitjoe" ||
$ARGV[0] eq "update-vps"
) {
my $word = $ARGV[0];
$word =~ s/update-//;
$called_script = SCRIPTS_DIR . 'update/' . $word . '.pl';
}
else {
print colored("Failed!\n", 'bold red')
. colored($ARGV[0], 'bold yellow')
. ": unknown script. Known scripts are:\n"
. colored("addsshkey\n", 'bold green')
. colored("adduser\n", 'bold green')
. colored("chdesc\n", 'bold green')
. colored("chowner\n", 'bold green')
. colored("chpublic\n", 'bold green')
. colored("newrepo\n", 'bold green')
. colored("rmrepo\n", 'bold green')
. colored("rmuser\n", 'bold green')
. colored("update-gitjoe\n", 'bold green')
. colored("update-vps\n", 'bold green');
exit 2;
}
print "Calling " . colored($called_script, 'bold green') . " via " . colored(SSH_BOY, 'bold magenta') . ".\n";
if ($argc > 1) {
print "Arguments:\n";
my $i = 1;
while ($i < $argc) {
$argv_line = $argv_line . ' "' . $ARGV[$i] . '"';
print colored($ARGV[$i], 'bold yellow') . "\n";
$i += 1;
}
}
my $dash = `/bin/sh -c "which dash"`;
chomp $dash;
system(
$dash,
'-c',
'ssh ' . SSH_BOY . " << EOF
" . $called_script . $argv_line . "
exit
EOF
"
);
print "Done.\n";
exit;
}
main();
__END__
|