Initial code drop

This commit is contained in:
Jesse Keating 2007-02-14 11:25:01 -05:00
parent 4967a2a434
commit 5d7e66a17e
126 changed files with 27342 additions and 0 deletions

18
cli/Makefile Normal file
View file

@ -0,0 +1,18 @@
FILES = koji
_default:
@echo "nothing to make. try make install"
clean:
rm -f *.o *.so *.pyc *~
install:
@if [ "$(DESTDIR)" = "" ]; then \
echo " "; \
echo "ERROR: A destdir is required"; \
exit 1; \
fi
mkdir -p $(DESTDIR)/usr/bin
install -m 755 $(FILES) $(DESTDIR)/usr/bin
install -m 644 koji.conf $(DESTDIR)/etc/koji.conf

3102
cli/koji Executable file

File diff suppressed because it is too large Load diff

13
cli/koji.conf Normal file
View file

@ -0,0 +1,13 @@
[koji]
;configuration for koji cli tool
;url of XMLRPC server
;server = http://hub.example.com/kojihub
;url of web interface
;weburl = http://www.example.com/koji
;path to the koji top directory
;topdir = /mnt/koji