[dir#scripts]

Note: this is super old, use puppet instead these days...

 

Script: update_machine update_file
We use this simple script (no error checking as usual) to update our machine configuration.
We keep the configuration files in cvs and download them to a new machine.

Usage: update_machine directory root

Script: iptohex

No error checking, just a simple time saver. Converts an ipaddress into hexadecimal suitable for use by tftp tools and pxe booting. The builtin command gethostip does this also, I include the script incase someone finds it useful.

Example:

uphill@surrey[1]: 
iptohex 10.168.192.134
0AA8C086


#!/bin/bash

IPADDR=$1

if [ x${IPADDR}x = xx ]; then
echo "usage: $0 "
exit 1
fi

Unabashedly simple scripts that I use. Hopefully someone will find them useful.
I'm Thomas H. Uphill, my son is Noah (he's on the banner sometimes), my daughter is Aunjanue.

My father's name is Dennis H. Uphill, he's also known as Dr. Video or Dr. Science. He has a penchant for detail and problem solving. He's a strong union supporter, which he comes by naturally...

His father was Norman H. Uphill, he was a Union Executive for the Pipefitters and Steamfitters Union Local 170. His Union duties came to him naturally also...

My info
Recently some laptops in our network stopped downloading virus definitions. Our firewall was configured to allow traffic from the wireless vlan to our server
There is an excellent package for working with an iPod on Linux. gtkpod. Since version 0.99.2 it supports importing of Video's
My co-worker just got an iPod so I thought I would try and encode a DVD onto it (an unencrypted DVD that I own, for backup purposes only, not to be used for public performances, etc, only I looked at it, I shut it off when someone looked over my shoulder...blah blah). The ffmpeg that comes stock on RHEL4 is insufficient to do the transcoding. I built a newer version and mucked around a bit and got this going. I have a simple wrapper (there are numerous versions of such scripts floating around).