blob: 8620ede15fae35aa694d7a5d92555bc558a133ac (
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
|
#!/usr/bin/perl
# Exit code:
# 0 - success
# 1 - missing parameter
# 2 - invalid files or size parameters
# 3 - unable to write logrotate config
use strict;
my $cfg_dir = "/opt/vyatta/etc/logrotate";
my $file = "global";
my $log_file = "/var/log/messages";
my $log_conf = "${cfg_dir}/$file";
if ($#ARGV == 3) {
$file = shift;
$log_file = "/var/log/user/$file";
$log_conf = "${cfg_dir}/file_$file";
}
my $files = shift;
my $size = shift;
my $set = shift;
if (!defined($files) || !defined($size) || !defined($set)) {
exit 1;
}
if (!($files =~ m/^\d+$/) || !($size =~ m/^\d+$/)) {
exit 2;
}
# just remove it and make a new one below
# (the detection mechanism in XORP doesn't work anyway)
unlink $log_conf;
open my $out, '>', $log_conf
or exit 3;
if ($set == 1) {
print $out <<EOF;
$log_file {
missingok
notifempty
create
rotate $files
size=${size}k
}
EOF
}
close $out;
exit 0;
|