Last change
on this file since 13574 was 13574, checked in by ed, 9 years ago |
Update the WLportal page that users must sent a mail to support@….
This file wil be used to roll out over the active nodes. (after testing ofcourse)
Engish version needs to be modified....later
|
-
Property svn:eol-style
set to
LF
-
Property svn:executable
set to
*
|
File size:
625 bytes
|
Rev | Line | |
---|
| 1 | #!/bin/sh
|
---|
| 2 | # Get bare minimal information of node, for the use of easy debugging
|
---|
| 3 | # Rick van der Zwet <info@rickvanderzwet.nl>
|
---|
| 4 |
|
---|
| 5 | # Trac specific code
|
---|
| 6 | echo "----"
|
---|
| 7 | echo "{{{"
|
---|
| 8 |
|
---|
| 9 | # Introduction
|
---|
| 10 | echo "Generated by $USER@`hostname`"
|
---|
| 11 | echo "Date: `date`"
|
---|
| 12 |
|
---|
| 13 | # Kernel information
|
---|
| 14 | uname -a | fold
|
---|
| 15 |
|
---|
| 16 | # Mount information, for the use of checking which slize is usd
|
---|
| 17 | mount
|
---|
| 18 |
|
---|
| 19 | # static iinformation, on image, like build, time, who,
|
---|
| 20 | VERSION='/tools/wl-release.txt'
|
---|
| 21 | cat $VERSION
|
---|
| 22 |
|
---|
| 23 | if [ -r /VERSION ]; then
|
---|
| 24 | cat /VERSION
|
---|
| 25 | seperator
|
---|
| 26 | fi
|
---|
| 27 |
|
---|
| 28 | # Current ip configuration
|
---|
| 29 | ifconfig -a
|
---|
| 30 |
|
---|
| 31 | # XXX: Configuration specifics
|
---|
| 32 |
|
---|
| 33 | # Trac specific code
|
---|
| 34 | echo "}}}"
|
---|
| 35 | echo "----"
|
---|
Note:
See
TracBrowser
for help on using the repository browser.