]> andersk Git - moira.git/blame - gen/confluence.sh
Command line printer manipulation client, and build goo.
[moira.git] / gen / confluence.sh
CommitLineData
b6f67e62 1#!/bin/sh
2# $Id$
3
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
10# The following exit codes are defined and MUST BE CONSISTENT with the
11# error codes the library uses:
12MR_MISSINGFILE=47836473
13
14PATH="/etc:/bin:/usr/bin:/usr/etc:/usr/athena/etc"
15OUTFILE=/var/local/moira-feed/groups
16
17# Alert if the output file doesn't exist
18test -r $OUTFILE || exit $MR_MISSINGFILE
19
20# Set the perms usefully
21chgrp www $OUTFILE
22chmod g+r $OUTFILE
23
24# cleanup
25test -f $0 && rm -f $0
26
27exit 0
This page took 0.047563 seconds and 5 git commands to generate.