Hinzugefügt:

* Erste Version von CONFIRE.
  * ./make.sh sync lädt nun alle neuen Dateien auf den FTP-Server.


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@135 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2006-05-24 17:42:02 +00:00
parent ee4fdd07e7
commit 0eab8e8489
4 changed files with 42 additions and 3 deletions

View File

@@ -26422,4 +26422,5 @@ usr/sbin/visudo
## pakfire
##
opt/pakfire
opt/confire
etc/pakfire.conf

17
src/confire/confire Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
############################################################################################
# Copyright (C) 2006 by IPFire.org #
# IPFire ist freie Software, die Sie unter bestimmten Bedingungen weitergeben d<>rfen. #
############################################################################################
if [ -f "/opt/confire/paks/$1" ]; then
echo -e "Configuring $1."
. /opt/confire/paks/$1
exit 0
else
echo -e "There is no package with name $1. Exiting."
exit 1
fi
################################### EOF ####################################################