Les scripts utiles
Révision datée du 24 février 2016 à 11:48 par Bruno (discussion | contributions) (→Query SQL pour le summary financier)
Cette page rassemble différents scripts et morceaux de code dont on ne sait pas trop quoi faire mais qui pourraient servir à d'autres.
Script pour changer le password d'une antenne UBNT
#!/usr/bin/perl
use FindBin qw($Bin $Script);
use WWW::Mechanize;
die "Syntax: $Script
...
Changes the password on 1 or more AirOS units.
" unless @ARGV >= 6;
my $user = shift @ARGV;
my $op = shift @ARGV;
my $np = shift @ARGV;
my $rouser = shift @ARGV;
my $ropass = shift @ARGV;
my @addresses = @ARGV;
open L, ">>$Bin/$Script.log" or die "Unable to write to $Bin.log: $!";
sub l {
print STDERR @_;
print L @_;
}
for my $a (@addresses) {
l "Changing password on $a\n";
my $mech = WWW::Mechanize->new();
my $entry;
my $start = "http://$a/login.cgi?uri=/system.cgi";
$mech->get($start);
$mech->field('username',$user);
$mech->field('password',$op);
$response = $mech->submit(); # to get login cookie
if (!$response->is_success) {
l $response->status_line, "\n";
}
$mech->get(qq|http://$a/system.cgi|);
$mech->field('NewPassword',$np);
$mech->field('NewPassword2',$np);
$mech->field('OldPassword',$op);
$mech->field('ro_status', "enabled");
$mech->field('rousername', $rouser);
$mech->field('roPassword', $ropass);
$mech->field('hasRoPassword', "true");
$mech->click_button(name => "change");
$response = $mech->submit();
if (!$response->is_success) {
l $response->status_line, "\n";
}
$response = $mech->get(qq|http://$a/apply.cgi|);
if (!$response->is_success) {
l $response->status_line, "\n";
}
}
close L;
exit 0;
Query SQL pour le summary financier dans le SI SCANI
select valid_from, valid_until, dbegin_may, dend_may,
(dend_may - dbegin_may + 1) as nb_days_may,
value_day, nb_days,
value_day * (dend_may - dbegin_may + 1) as value_may from
(select
valid_from, valid_until,
greatest(valid_from, '2016-05-01') as dbegin_may,
least(valid_until, '2016-05-31') as dend_may,
price,
price / (valid_until - valid_from) as value_day,
valid_until - valid_from as nb_days
from invoices_elts
where valid_until >= '2016-05-01' and valid_from <= '2016-05-30')
as may;