aboutsummaryrefslogtreecommitdiffstats
path: root/src/vps-do.pl
blob: 2ce11ff28c3586a675c6af981c695006c121f202 (plain)
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
#!/usr/local/bin/perl

use strict;
use warnings;
use Term::ANSIColor;

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 $scripts_dir = '/root/scripts/src/';
	my $called_script = '';
	my $word = '';
	my $ssh_boy = 'root@jozanleclerc.xyz';
	if (
		$ARGV[0] eq 'addsshkey' ||
		$ARGV[0] eq 'adduser' ||
		$ARGV[0] eq 'chdesc' ||
		$ARGV[0] eq 'chowner' ||
		$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"
		) {
		$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("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) {
			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 2>&1
ls -lh
uname -n
exit
"
		);
	exit;
}

main();

__END__