From e8a38183eea1b11332228ee556343c38cd6f5724 Mon Sep 17 00:00:00 2001 From: waszi Date: Fri, 7 Jul 2000 19:33:38 +0000 Subject: [PATCH] - added Changed files: fakebo.spec -> 1.1 --- fakebo.spec | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 fakebo.spec diff --git a/fakebo.spec b/fakebo.spec new file mode 100644 index 0000000..545dbfd --- /dev/null +++ b/fakebo.spec @@ -0,0 +1,63 @@ +Summary: Fakes trojan servers and logs incoming requests +Name: fakebo +Version: 0.4.1 +Release: 1 +License: GPL +Group: X11/Utilities +Group(pl): X11/Narzêdzia +Source0: ftp://ftp.linux.hr/pub/fakebo/%{name}-%{version}.tar.gz +Source1: fakebo.init +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) +URL: http://cvs.linux.hr/fakebo/ +Requires: /sbin/chkconfig + +%description +FakeBO fakes trojan server responses (Back Orifice, NetBus, etc.) and +logs every attempt to a logfile or stdout. It is able to send fake +pings and replies back to the client trying to access your system. + +%prep +%setup -q +%build +LDFLAGS="-s"; export LDFLAGS +%configure +%{__make} + +%install +rm -rf $RPM_BUILD_ROOT + +%{__make} install DESTDIR=$RPM_BUILD_ROOT + +install -d $RPM_BUILD_ROOT/etc/rc.d/init.d +install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/fakebo + +gzip -9nf $RPM_BUILD_ROOT%{_mandir}/*/* INSTALL HACKING \ + AUTHORS TODO NEWS ChangeLog README custom.replies + +%clean +rm -rf $RPM_BUILD_ROOT + +%post +/sbin/chkconfig --add fakebo +if [ -f /var/lock/subsys/fakebo ]; then + /etc/rc.d/init.d/fakebo restart 1>&2 +else + echo "Run \"/etc/rc.d/init.d/fakebo start\" to start fakebo daemon." +fi + + +%postun +if [ "$1" = 0 ]; then + if [ -f /var/lock/subsys/fakebo ]; then + /etc/rc.d/init.d/fakebo stop 1>&2 + fi + /sbin/chkconfig --del fakebo +fi + +%files +%defattr(644,root,root,755) +%attr(755,root,root) %{_bindir}/fakebo +%attr(754,root,root) /etc/rc.d/init.d/fakebo +%attr(640,root,root) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/fakebo.conf +%{_mandir}/man1/fakebo.1* +%doc {INSTALL,HACKING,AUTHORS,TODO,NEWS,ChangeLog,README,custom.replies}.gz -- 2.44.0