wok-stable view ocsinventory-agent/stuff/Slitaz.pm @ rev 11386

Compat: ensure that pam WGET_URL is non-https. Otherwise tazwok can't download it at cook-toolchain time
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Dec 10 04:42:49 2011 +0100 (2011-12-10)
parents
children
line source
1 package Ocsinventory::Agent::Backend::OS::Linux::Distro::NonLSB::Slitaz;
2 use strict;
4 sub check {-f "/etc/slitaz-release"}
6 #####
7 sub findRelease {
8 my $v;
10 open V, "</etc/slitaz-release" or warn;
11 chomp ($v=<V>);
12 close V;
13 return "SliTaz GNU/Linux $v";
14 }
16 sub run {
17 my $params = shift;
18 my $inventory = $params->{inventory};
20 my $OSComment;
21 chomp($OSComment =`uname -v`);
23 $inventory->setHardware({
24 OSNAME => findRelease(),
25 OSCOMMENTS => "$OSComment"
26 });
27 }
29 1;