source: trunk/locker/sbin/rpmlist.sh @ 1639

Last change on this file since 1639 was 1639, checked in by achernya, 14 years ago
Fixed ticket 84, created system for checking if scripts servers are in sync
  • Property svn:executable set to *
File size: 256 bytes
Line 
1#!/bin/bash
2
3copyTo='/mit/scripts/cron_scripts/rpm-sync/'
4packages=`mktemp --tmpdir rpmlist.XXXXXX`
5rpm -qa --queryformat '%{NAME}.%{ARCH}\n' | sort | uniq > $packages
6
7host=`hostname`
8extension='.rpmlist'
9file="$copyTo/$host$extension"
10mv $packages $file
Note: See TracBrowser for help on using the repository browser.