Changeset 6afd275c557e7fd4812458abdbe3013685ae7bd7
- Timestamp:
- 03/13/08 19:31:31
(5 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1205436691 +0000
- git-parent:
[4908891ea99783a60dca14e56d1f6914acf64f43]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1205436691 +0000
- Message:
my hostname goes in mixed-case when I'm at home -- PoS
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r257eda6 |
r6afd275 |
|
| 1 | 1 | AC_INIT(src/noitd.c) |
|---|
| 2 | 2 | |
|---|
| 3 | | node=`hostname | cut -f1 -d '.'` |
|---|
| | 3 | node=`hostname | cut -f1 -d '.' | tr '[A-Z]' '[a-z]'` |
|---|
| 4 | 4 | if test -f ".configure.$node"; then |
|---|
| 5 | 5 | echo "***********************************************************" |
|---|