Initial code drop
This commit is contained in:
parent
4967a2a434
commit
5d7e66a17e
126 changed files with 27342 additions and 0 deletions
18
cli/Makefile
Normal file
18
cli/Makefile
Normal 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
|
||||
13
cli/koji.conf
Normal file
13
cli/koji.conf
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue