mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-12 04:05:53 +02:00
Clamav- und MySQL-Paket gefixt.
Cyrus-SASL aktiviert sich automatisch. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@932 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -13,11 +13,11 @@ SERVICES {
|
||||
imaps cmd="imapd -s" listen="imaps" prefork=0
|
||||
pop3 cmd="pop3d" listen="pop3" prefork=0
|
||||
pop3s cmd="pop3d -s" listen="pop3s" prefork=0
|
||||
sieve cmd="timsieved" listen="127.0.0.1:2000" prefork=0
|
||||
#sieve cmd="timsieved" listen="127.0.0.1:2000" prefork=0
|
||||
|
||||
# at least one LMTP is required for delivery
|
||||
#lmtp cmd="lmtpd" listen="127.0.0.1:24" prefork=0
|
||||
#lmtpunix cmd="lmtpd" listen="/var/imap/socket/lmtp" prefork=0
|
||||
lmtpunix cmd="lmtpd" listen="/var/imap/socket/lmtp" prefork=0
|
||||
|
||||
# this is only necessary if using notifications
|
||||
notify cmd="notifyd" listen="/var/imap/socket/notify" proto="udp" prefork=1
|
||||
|
||||
@@ -12,7 +12,7 @@ usr/lib/libclamav.so.2
|
||||
usr/lib/libclamav.so.2.0.7
|
||||
#usr/lib/pkgconfig/libclamav.pc
|
||||
usr/sbin/clamd
|
||||
#usr/share/clamav
|
||||
usr/share/clamav
|
||||
usr/share/clamav/daily.cvd
|
||||
usr/share/clamav/main.cvd
|
||||
#usr/share/man/man1/clamconf.1
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
usr/bin/ctorrent
|
||||
@@ -1,10 +1,7 @@
|
||||
etc/my.cnf
|
||||
etc/rc.d/init.d/mysql
|
||||
#srv/mysql
|
||||
srv/mysql/mysql
|
||||
#srv/mysql/mysql-bin.000001
|
||||
#srv/mysql/mysql-bin.000002
|
||||
#srv/mysql/mysql-bin.index
|
||||
srv/mysql
|
||||
#srv/mysql/mysql
|
||||
#srv/mysql/mysql/columns_priv.MYD
|
||||
#srv/mysql/mysql/columns_priv.MYI
|
||||
#srv/mysql/mysql/columns_priv.frm
|
||||
|
||||
@@ -128,6 +128,7 @@
|
||||
* libart_lgpl-2.3.17
|
||||
* libcap-1.10
|
||||
* libid3tag-0.15.1b
|
||||
* libidn-0.6.14
|
||||
* libmad-0.15.1b
|
||||
* libnet-1.1.2.1
|
||||
* libogg-1.1.3
|
||||
|
||||
7
make.sh
7
make.sh
@@ -626,7 +626,12 @@ buildpackages() {
|
||||
ipfirepackages() {
|
||||
ipfiremake core-updates
|
||||
for i in $(ls -1 $BASEDIR/config/rootfiles/packages); do
|
||||
[ -e $BASEDIR/lfs/$i ] && ipfiredist $i
|
||||
if [ -e $BASEDIR/lfs/$i ]; then
|
||||
ipfiredist $i
|
||||
else
|
||||
echo -n $i
|
||||
beautify message SKIP
|
||||
fi
|
||||
done
|
||||
test -d $BASEDIR/packages || mkdir $BASEDIR/packages
|
||||
mv -f $LFS/install/packages/* $BASEDIR/packages >> $LOGFILE 2>&1
|
||||
|
||||
10
src/paks/cyrus-sasl/install.sh
Normal file
10
src/paks/cyrus-sasl/install.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
|
||||
extract_files
|
||||
|
||||
ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc0.d/K49cyrus-sasl
|
||||
ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc3.d/S24cyrus-sasl
|
||||
ln -sf ../init.d/cyrus-sasl /etc/rc.d/rc6.d/K49cyrus-sasl
|
||||
|
||||
/etc/init.d/cyrus-sasl start
|
||||
5
src/paks/cyrus-sasl/uninstall.sh
Normal file
5
src/paks/cyrus-sasl/uninstall.sh
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
/etc/init.d/cyrus-sasl stop
|
||||
|
||||
rm -rvf /etc/rc.d/rc*.d/*cyrus-sasl
|
||||
4
src/paks/cyrus-sasl/update.sh
Normal file
4
src/paks/cyrus-sasl/update.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
. /opt/pakfire/lib/functions.sh
|
||||
|
||||
extract_files
|
||||
Reference in New Issue
Block a user