hotsanic |
Subversion Repositories: |
Line No. | Rev | Author | Line |
---|---|---|---|
1 | 34 | simandl | package HotSaNICmod::OSdep; |
2 | |
||
3 | sub sample { |
||
4 | print "Sorry, but your OS is not supported!\n"; |
||
5 | } |
||
6 | |
||
7 | sub updatedb { |
||
8 | print "Sorry, but your OS is not supported!\n"; |
||
9 | } |
||
10 | |
||
11 | sub version { |
||
12 | ($VERSION = '$Revision: 1.2 $') =~ s/.*(\d+\.\d+).*/$1/; |
||
13 | return "default.pm $VERSION"; |
||
14 | } |
||
15 | |
||
16 | 1; |
||
17 | |