]> andersk Git - moira.git/blame - gen/warehouse.sh
Command line printer manipulation client, and build goo.
[moira.git] / gen / warehouse.sh
CommitLineData
fc2e0831 1#!/bin/sh
e4d3125b 2# $Id$
fc2e0831 3
f4f32185 4if [ -d /var/athena ] && [ -w /var/athena ]; then
5 exec >/var/athena/moira_update.log 2>&1
6else
7 exec >/tmp/moira_update.log 2>&1
8fi
9
fc2e0831 10# The following exit codes are defined and MUST BE CONSISTENT with the
59ec8dae 11# error codes the library uses:
e4d3125b 12MR_MISSINGFILE=47836473
fc2e0831 13
e4d3125b 14PATH="/etc:/bin:/usr/bin:/usr/etc:/usr/athena/etc"
15OUTFILE=/warehouse/transfers/moirausr/username_id.map.txt
fc2e0831 16
e4d3125b 17# Alert if the output file doesn't exist
18test -r $OUTFILE || exit $MR_MISSINGFILE
fc2e0831 19
e4d3125b 20# Set the perms usefully
21chown root $OUTFILE
22chgrp 0 $OUTFILE
23chmod 644 $OUTFILE
fc2e0831 24
e4d3125b 25# cleanup
26test -f $0 && rm -f $0
fc2e0831 27
28exit 0
This page took 0.072764 seconds and 5 git commands to generate.