source: hybrid/branches/releng-9/nanobsd/files/tools/wl-version@ 12751

Last change on this file since 12751 was 12751, checked in by ed, 11 years ago

THIS script adds the config from GENESIS to this operating system
make sure you know what you are doing, if not press control-C
ENTER CONFIG NAME ......(and press enter)

Name [HybridEd]:
# INFO: Working on file: 'authorized_keys'
# INFO: Working on file: 'dhcpd.conf'
# INFO: Working on file: 'dnsmasq.conf'
# INFO: Working on file: 'motd'
# INFO: Working on file: 'rc.conf.local'
fetch: http://wirelessleiden.nl/config//HybridEd/hybrid.conf.local: Internal Server Error

This must be:
fetch: http://wirelessleiden.nl/config//HybridEd/pf.hybrid.conf.local

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
File size: 625 bytes
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
6echo "----"
7echo "{{{"
8
9# Introduction
10echo "Generated by $USER@`hostname`"
11echo "Date: `date`"
12
13# Kernel information
14uname -a | fold
15
16# Mount information, for the use of checking which slize is usd
17mount
18
19# static iinformation, on image, like build, time, who,
20VERSION='/tools/wl-release.txt'
21cat $VERSION
22
23if [ -r /VERSION ]; then
24 cat /VERSION
25 seperator
26fi
27
28# Current ip configuration
29ifconfig -a
30
31# XXX: Configuration specifics
32
33# Trac specific code
34echo "}}}"
35echo "----"
Note: See TracBrowser for help on using the repository browser.