Re: How do I get a copy of log_server_status perl script for apache2?

2021-05-06 Thread Greg Wooledge
(It's not just the shebang -- there are more.) So, I guess copying it out of the source tree might have been a naive suggestion. You'll at least have to run the ./configure script in a way that matches how the Debian package is built, and then probably build most, or all, of Apache itself

Re: How do I get a copy of log_server_status perl script for apache2?

2021-05-06 Thread Steve Dondley
So, I guess you would download an upstream Apache source tarball, extract it, and copy the log_server_status script out of the extracted tarball and into /usr/local/bin. Or wherever you want it. Interesting. First time I've seen a debian package remove a file like that. It can also be do

Re: How do I get a copy of log_server_status perl script for apache2?

2021-05-06 Thread Greg Wooledge
On Thu, May 06, 2021 at 11:02:01AM -0400, Steve Dondley wrote: > I have a stock apache2 server installed with apt-get. There is supposedly a > perl script for getting machine-readable output of the apache status: > http://httpd.apache.org/docs/2.4/programs/log_server_status.html >

How do I get a copy of log_server_status perl script for apache2?

2021-05-06 Thread Steve Dondley
I have a stock apache2 server installed with apt-get. There is supposedly a perl script for getting machine-readable output of the apache status: http://httpd.apache.org/docs/2.4/programs/log_server_status.html However, I can't find this script anywhere on my Debian Buster install

Re: Q: LDAP - perl script using Net::LDAP and start_tls gives an error

2014-04-13 Thread Ric Moore
On 04/13/2014 04:45 PM, Snow Leopard wrote: Hi Atle, in my case I am certificate agency (self-signed certificate) and I issue "private key" and "certificate" (cacert.pem) as for root "CA" as for LDAP server (server-key.pem and server-cert.pem) and LDAP perl scr

Re: Q: LDAP - perl script using Net::LDAP and start_tls gives an error

2014-04-13 Thread Snow Leopard
Hi Atle, in my case I am certificate agency (self-signed certificate) and I issue "private key" and "certificate" (cacert.pem) as for root "CA" as for LDAP server (server-key.pem and server-cert.pem) and LDAP perl script client (client-key.pem and client-cert.pem

Re: Q: LDAP - perl script using Net::LDAP and start_tls gives an error

2014-04-13 Thread Atle Solbakken
If I made a change in "start_tls" command for option "verify => none" to one of 'optional' or 'required' then I get next error message root@install:~/prog# ./ldap_sec.pl SSL connect attempt failed with unknown error error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify f

Q: LDAP - perl script using Net::LDAP and start_tls gives an error

2014-04-13 Thread Snow Leopard
Hi, I am trying to write perl script with Net::LDAP module, start_tls command and stumbled on a problem. I would appreciate if somebody could point me to "the source of the problem". If there is better place to get an assistance in resolution of the problem please indicate in

Re: Call for testers - perl script to connect to the Juniper VPN

2012-07-24 Thread Rob Owens
On Tue, Jul 24, 2012 at 03:00:24PM +0200, Alex Samorukov wrote: > Hello, > > I wrote a Perl script to connect to the Juniper VPN from Linux. It > works without Java and requires perl only. I used wireshark to > analyze management protocol of the juniper binary to emulate java >

Re: Call for testers - perl script to connect to the Juniper VPN

2012-07-24 Thread Alex Samorukov
://smallhacks.wordpress.com/2012/07/15/jvpn-perl-script-to-connect-to-the-juniper-vpn-with-host-checker-enabled/ . Comments and bugreports are welcome. Also i am going to do debian package, after some positive reports. Thank you, and I hope that it is not offtopic in this list. Am I right in thinking that

Re: Call for testers - perl script to connect to the Juniper VPN

2012-07-24 Thread Darac Marjal
On Tue, Jul 24, 2012 at 03:00:24PM +0200, Alex Samorukov wrote: > Hello, > > I wrote a Perl script to connect to the Juniper VPN from Linux. It > works without Java and requires perl only. I used wireshark to > analyze management protocol of the juniper binary to emulate java >

Call for testers - perl script to connect to the Juniper VPN

2012-07-24 Thread Alex Samorukov
Hello, I wrote a Perl script to connect to the Juniper VPN from Linux. It works without Java and requires perl only. I used wireshark to analyze management protocol of the juniper binary to emulate java GUI behaviour. If you are using Juniper VPN with Java client and want to test my script

Re: Why does browser want to open up perl script with editor?

2005-10-08 Thread Alexander Schmehl
Hi! * Fred OGrady <[EMAIL PROTECTED]> [051009 05:01]: > from: file:///usr/local/sql-ledger/index.html I click on "Logon" (a link to > file:///usr/local/sql-ledger/logon.pl). My Browser wants to open > logon.plwith my default text editor. I am sure I have the permissions > set to > execute. > > A

Re: Why does browser want to open up perl script with editor?

2005-10-08 Thread Patrick Wiseman
On 10/8/05, Fred OGrady <[EMAIL PROTECTED]> wrote: Hi everyone, I know I must be doing something wrong here: I am trying to configure sql-ledger. from:  file:///usr/local/sql-ledger/index.html I click on "Logon" (a link to file:///usr/local/sql-ledger/logon.pl).  My Browser wants to open logon.p

Why does browser want to open up perl script with editor?

2005-10-08 Thread Fred OGrady
Hi everyone, I know I must be doing something wrong here: I am trying to configure sql-ledger. from:  file:///usr/local/sql-ledger/index.html I click on "Logon" (a link to file:///usr/local/sql-ledger/logon.pl).  My Browser wants to open logon.pl with my default text editor.  I am sure I have th

Re: How Can I Schedule A Perl Script?

2005-07-18 Thread Lorenzo Taylor
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 You can run a perl script from a cron job just like any other program. As the user whose home directory the file is in: crontab -e and in the file put 0,30 * * * * ~/doc/id.pl Note that the /home/user part can be replaced with ~ just like in the

Re: How Can I Schedule A Perl Script?

2005-07-18 Thread Roberto C. Sanchez
On Sun, Jul 17, 2005 at 11:45:06PM -0300, Eduardo B. V. Pereira wrote: > I have a perl script that needs to be runned each 30 > minutes, how can I do this? Can I use cron? If so what > would the configuration line would be? The path to the > script is /home/user/doc/id.pl > I

Re: How Can I Schedule A Perl Script?

2005-07-17 Thread Michael Ott
Hello > I have a perl script that needs to be runned each 30 > minutes, how can I do this? Can I use cron? If so what > would the configuration line would be? The path to the > script is /home/user/doc/id.pl You can use cron crontab -e as normal user and 0,30 * * * * /home/user/doc/i

Re: How Can I Schedule A Perl Script?

2005-07-17 Thread Anders Breindahl
On Monday 18 July 2005 04:55, Stephen R Laniel wrote: > Caveat: if this job needs to run with root privileges, then > you'll need to edit the global crontab in /etc/crontab. Unless I'm mistaken, root should rather add her custom cronjobs to her own crontab by running `crontab -e` herself. Works

How Can I Schedule A Perl Script?

2005-07-17 Thread Eduardo B. V. Pereira
I have a perl script that needs to be runned each 30 minutes, how can I do this? Can I use cron? If so what would the configuration line would be? The path to the script is /home/user/doc/id.pl I'm running a stable sarge. Thanks, e.pe

Re: How Can I Schedule A Perl Script?

2005-07-17 Thread Stephen R Laniel
On Sun, Jul 17, 2005 at 11:48:49PM -0300, [EMAIL PROTECTED] wrote: > I have a perl script that needs to be runned each 30 > minutes, how can I do this? Can I use cron? If so what > would the configuration line would be? The path to the > script is /home/user/doc/id.pl > I'm ru

How Can I Schedule A Perl Script?

2005-07-17 Thread pvbedu-debian
I have a perl script that needs to be runned each 30 minutes, how can I do this? Can I use cron? If so what would the configuration line would be? The path to the script is /home/user/doc/id.pl I'm running a stable sarge. Thanks, e.pe

[OT] multi_upload_file perl script that works

2004-10-20 Thread Antonio Rodriguez
OT, by a frustrated perl programmer wooanabee Would anybody care to share a multifile upload cgi script that actually works? All the ways and google results that I have tried fail at some point. TIATARPP (2 all real perl programmers) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subje

Re: starting Perl script from inetd

2004-06-27 Thread Bob Proulx
undefined value at > /usr/lib/perl5/site_perl/5.6.1/Net/SMTP/Server.pm line 55. > Connection closed by foreign host. This really looks like inetd was listening on port 25, started up your perl script, your perl tried to open port 25 again. Of course that won't work. > -- so

Re: starting Perl script from inetd

2004-06-27 Thread Stephen Patterson
On Sun, 27 Jun 2004 20:20:05 +0200, <[EMAIL PROTECTED]> wrote: > > Trying to start a Perl smtp(port 25) server from inetd. > Failed to start server :Address already in use > (in cleanup) Can't call method "close" on an undefined value at > /usr/lib/perl5/site_perl/5.6.1/Net/SMTP/Server.p

starting Perl script from inetd

2004-06-27 Thread socrel
Trying to start a Perl smtp(port 25) server from inetd. Script works OK as stand alone but fails to start from inetd. (In fact this has reached you through the same code, but running on a different port) Question 1: Is there a way to log inetd? Question 2: should the server be started differen

Re: Need a shell or perl script

2004-02-23 Thread Monique Y. Herman
On 2004-02-23, Deboo penned: > On Sun, 22 Feb 2004, Monique Y. Herman wrote: > >> On 2004-02-22, Deboo penned: >> > but I know neither. Not that I do not want to learn, but I need >> > help to get this list. Can anyone help me out by giving the >> > commands needed to do this? If they think this I

Re: Need a shell or perl script

2004-02-23 Thread Deboo
On Sun, 22 Feb 2004, Monique Y. Herman wrote: > On 2004-02-22, Deboo penned: > > but I know neither. Not that I do not want to learn, but I need help > > to get this list. Can anyone help me out by giving the commands needed > > to do this? If they think this I am asking for mass e-mail, then I >

Re: Need a shell or perl script

2004-02-22 Thread Monique Y. Herman
On 2004-02-22, Deboo penned: > Over the years, I have been using many email clients from windows to > linux and have been saving lots of old personal emails. I have many > them in many different formats as per the MUA. They are a lot. > > Now, I could search for one or two email addresses whenever

Re: Need a shell or perl script

2004-02-22 Thread Gregory Seidman
On Sun, Feb 22, 2004 at 10:51:58PM +0530, Deboo wrote: } Over the years, I have been using many email clients from windows to linux } and have been saving lots of old personal emails. I have many them in many } different formats as per the MUA. They are a lot. } } Now, I could search for one or tw

Re: Need a shell or perl script

2004-02-22 Thread Bijan Soleymani
On Sun, Feb 22, 2004 at 10:51:58PM +0530, Deboo wrote: > Now, I could search for one or two email addresses whenever I need to, > having kept all these different mailboxes in one directory. Never having > made an addressbook, is what caused this problem. I would like to sort, > search and make a li

Need a shell or perl script

2004-02-22 Thread Deboo
Over the years, I have been using many email clients from windows to linux and have been saving lots of old personal emails. I have many them in many different formats as per the MUA. They are a lot. Now, I could search for one or two email addresses whenever I need to, having kept all these diffe

Re: segfault while loading perl script on irssi.

2003-10-02 Thread Dave Carrigan
On Thu, Oct 02, 2003 at 06:05:25PM +0200, flibus wrote: > >I took a look on bugs.debian.org but i didn't find any bug >report about this one. I'm on a testing/unstable debian with a >2.4.21 kernel taken from the kernel source pacakges and >irssi segfault while i wan

segfault while loading perl script on irssi.

2003-10-02 Thread flibus
I took a look on bugs.debian.org but i didn't find any bug report about this one. I'm on a testing/unstable debian with a 2.4.21 kernel taken from the kernel source pacakges and irssi segfault while i want to load perl scripts. In /etc/apt/source.list i got :

Re: catch the output of an app in a perl script

2002-12-08 Thread Michael Naumann
07.12.2002 01:18:56, Shyamal Prasad <[EMAIL PROTECTED]> wrote: >It's been some years since I've done real perl programming (thank God >for Python!), but the original poster might find it interesting that >the "pipe open" syntax allows the program to read the output when it >is ready. The backquote

Re: catch the output of an app in a perl script

2002-12-06 Thread Colin Watson
On Fri, Dec 06, 2002 at 06:18:56PM -0600, Shyamal Prasad wrote: > "Michael" == Michael Naumann <[EMAIL PROTECTED]> writes: > > Michael> On Friday 06 December 2002 12:56, Colin Watson wrote: > >> Use the "pipe open" syntax. The perlopentut man page will help. > > Michael> Or even e

Re: catch the output of an app in a perl script

2002-12-06 Thread Shyamal Prasad
"Michael" == Michael Naumann <[EMAIL PROTECTED]> writes: Michael> On Friday 06 December 2002 12:56, Colin Watson wrote: >> On Fri, Dec 06, 2002 at 12:35:08PM +0100, Raffaele Sandrini >> wrote: > How can i catch the output of a prog

Re: catch the output of an app in a perl script

2002-12-06 Thread Michael Naumann
On Friday 06 December 2002 12:56, Colin Watson wrote: > On Fri, Dec 06, 2002 at 12:35:08PM +0100, Raffaele Sandrini wrote: > > How can i catch the output of a program runned in a perl script? > > Use the "pipe open" syntax. The perlopentut man page will help. Or even e

Re: catch the output of an app in a perl script

2002-12-06 Thread Colin Watson
On Fri, Dec 06, 2002 at 12:35:08PM +0100, Raffaele Sandrini wrote: > How can i catch the output of a program runned in a perl script? Use the "pipe open" syntax. The perlopentut man page will help. Cheers, -- Colin Watson [[EMAIL PROTECT

catch the output of an app in a perl script

2002-12-06 Thread Raffaele Sandrini
Hi How can i catch the output of a program runned in a perl script? the "system()" command returns the return value of a app, doesn't it? do i have to do something like "read()" ? cheers, Raffaele -- +++ GMX - Mail, Messaging & more http://www.gmx.net

Re: mirror, the perl script mirroring package

2002-06-19 Thread Alex Malinovich
On Wed, 2002-06-19 at 15:02, Walter Tautz wrote: > > I am attempting to setup a local private mirror of debian using the perl > > script package. It has run for several days. It quits from time to time and > > waits for the next initiation event from crontab, but it can'

Re: mirror, the perl script mirroring package

2002-06-19 Thread Walter Tautz
On Tue, 18 Jun 2002, Paul E Condon wrote: > I am attempting to setup a local private mirror of debian using the perl > script package. It has run for several days. It quits from time to time and > waits for the next initiation event from crontab, but it can't seem to clear

mirror, the perl script mirroring package

2002-06-18 Thread Paul E Condon
I am attempting to setup a local private mirror of debian using the perl script package. It has run for several days. It quits from time to time and waits for the next initiation event from crontab, but it can't seem to clear its queue of requests to set up softlink into the pool. I

Re: perl script to replace html login?

2002-02-08 Thread Johannes Franken
On Fri, Feb 08, 2002 at 02:01:30PM +0200, Martin Fluch wrote: > Is there a easy way to make a perl skript to send an http post request apt-get install libwww-perl man 1p POST -- Johannes Franken Professional unix/network development mailto:[EMAIL PROTECTED] http://www.jfranken.de/

Re: perl script to replace html login?

2002-02-08 Thread Pietro Cagnoni
> Hi! > > Is there a easy way to make a perl skript to send an http post request > produced by the following html form? > > > > > > > > The reply of the server is not important... install libwww-perl and use LWP::UserAgent . pietro.

perl script to replace html login?

2002-02-08 Thread Martin Fluch
Hi! Is there a easy way to make a perl skript to send an http post request produced by the following html form? The reply of the server is not important... - Martin

Cannot run a perl script | Fail to install php4

2001-08-02 Thread Andreas
Hi there! I have just run into a strange problem. I am installing (or try to ) PHP4 for Apache 1.3.20. The installation of Apache was as smooth as possible. But now, when I tryed to configure PHP, I suddently faced the following problem: apxs wont run!! file says: /opt/httpd/bin/apxs: perl

Re: Setuid Perl script works on one slink box, doesn't work on the other

1999-09-22 Thread Seth R Arnold
Is perl-5.004-suid installed on one and not hte other? On Wed, Sep 22, 1999 at 12:40:34PM +1000, Andrew Pollock wrote: > Hi, > > We've got two relatively new slink boxes, both running 2.2.12, and I've got > a setuid Perl script that doesn't work on one, but does on t

Setuid Perl script works on one slink box, doesn't work on the other

1999-09-22 Thread Andrew Pollock
Hi, We've got two relatively new slink boxes, both running 2.2.12, and I've got a setuid Perl script that doesn't work on one, but does on the other. Permissions are the same, everything (that I can think of) is the same... It's Perl 5.004_04. On the box that won't

Quake 2 - not a perl script?

1999-03-10 Thread Peter Ludwig
I've just gotten Quake 2, and the startup script in /usr/games returns the following error message :- Not a perl script at /usr/games/quake2 line 1. Anyone know what's going on here? I've just upgraded most of my sytsem to slink, and I waited to install Quake 2 until after I

Re: perl script

1999-02-08 Thread Jiri Baum
Hamish Moffatt: [about DOS lineends] > vim has always hidden these characters, AFAIK. nvi doesn't. :set ff=unix Or did I already write that? It changes the mode for the current file from whatever it was to Unix. Jiri -- <[EMAIL PROTECTED]> We'll know the future has arrived when every mailer

Re: perl script

1999-02-07 Thread Miquel van Smoorenburg
In article <[EMAIL PROTECTED]>, Hamish Moffatt <[EMAIL PROTECTED]> wrote: [about CRLF at the end of a line] >vim has always hidden these characters, AFAIK. nvi doesn't. vim -b file :%!col -b Mike. -- Indifference will certainly be the downfall of mankind, but who cares?

Re: perl script

1999-02-07 Thread Hamish Moffatt
On Thu, Jul 17, 1997 at 11:43:58AM -0700, Mike Schmitz wrote: > mike:~$ invoice -n > Illegal character \015 (carriage return) at /home/mschmitz/bin/invoice line 3. > (Maybe you didn't strip carriage returns after a network transfer?) > > > -- Snip -- > > The only transfers th

Re: perl script

1999-02-06 Thread Jiri Baum
Mike Schmitz: > I don't have pico, and usually use only vim. Vim showed no ^M's so I was > fairly satisfied that they did not exist. ... > Is vim now trying to be compatible with M$?!! Yeah, vim is trying to be too clever. :set ff=unix or :set fileformat=unix For more info, :help filefo

perl script

1999-02-05 Thread Mike Schmitz
I upgraded my system to hamm recently, and I am having trouble with a script I have been using to create invoices. The error message is: -- Snip -- mike:~$ invoice -n Illegal character \015 (carriage return) at /home/mschmitz/bin/invoice line 3. (Maybe you didn't strip carriage returns af

Re: perl script

1999-02-05 Thread Mike Schmitz
On Jul 17, Ben Gertzfield wrote > > "Mike" == Mike Schmitz <[EMAIL PROTECTED]> writes: > > Mike> I upgraded my system to hamm recently, and I am having > Mike> trouble with a script I have been using to create > Mike> invoices. The error message is: > > Mike> -- Snip -

Re: looking for dns perl script

1998-01-28 Thread Scott Ellis
On Wed, 28 Jan 1998, eugene mendoza wrote: > > Hello, > I am looking for perl script to convert bind ver 4 > files to bind ver 8 files. > The file is named-bootconf.pl. > It is not on the linux cd. > If anyone can send me this by mail, will be deeply > appreciated. >

looking for dns perl script

1998-01-28 Thread eugene mendoza
Hello, I am looking for perl script to convert bind ver 4 files to bind ver 8 files. The file is named-bootconf.pl. It is not on the linux cd. If anyone can send me this by mail, will be deeply appreciated. Best Regards, Eugene _ DO YOU

Re: WC:>: [linux-security] Perl script to locate F0 0F C7 C8 bombs (fwd)

1997-11-10 Thread ychim
http://desertwinds.multipleimage.com/ > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > > -- Forwarded message -- > Date: Mon, 10 Nov 1997 11:41:17 + (MYT) > To: linuxsa <[EMAIL PROTECTED]> > Subject: [linux-security] Perl script to locate F0 0F

WC:>: [linux-security] Perl script to locate F0 0F C7 C8 bombs (fwd)

1997-11-10 Thread Chad D. Zimmerman
) To: linuxsa <[EMAIL PROTECTED]> Subject: [linux-security] Perl script to locate F0 0F C7 C8 bombs (fwd) There is no known fix to the F0 0F C7 C8 bug at this time. What can be done, however, is run a program, such as the script after my signature, to locate any and all such programs.

Re: perl script

1997-07-21 Thread Ronald van Loon
In a message to me, Hamish Moffatt, you wrote: |"On Thu, Jul 17, 1997 at 10:40:45PM -0700, Mike Schmitz wrote: |"> I don't have pico, and usually use only vim. Vim showed no ^M's so I was |"> fairly satisfied that they did not exist. I started looking at the file |"> in other editors on my system

Re: perl script

1997-07-18 Thread Hamish Moffatt
On Thu, Jul 17, 1997 at 10:40:45PM -0700, Mike Schmitz wrote: > I don't have pico, and usually use only vim. Vim showed no ^M's so I was > fairly satisfied that they did not exist. I started looking at the file > in other editors on my system, ae & xedit, ae showed none, but xedit saw > them big a

Re: perl script

1997-07-18 Thread Mike Schmitz
On Jul 17, Ben Gertzfield wrote > > "Mike" == Mike Schmitz <[EMAIL PROTECTED]> writes: > > Mike> I upgraded my system to hamm recently, and I am having > Mike> trouble with a script I have been using to create > Mike> invoices. The error message is: > > Mike> -- Snip -

Re: perl script

1997-07-17 Thread Ben Gertzfield
> "Mike" == Mike Schmitz <[EMAIL PROTECTED]> writes: Mike> I upgraded my system to hamm recently, and I am having Mike> trouble with a script I have been using to create Mike> invoices. The error message is: Mike> -- Snip -- Mike> mike:~$ invoice -n Illegal charac

perl script

1997-07-17 Thread Mike Schmitz
I upgraded my system to hamm recently, and I am having trouble with a script I have been using to create invoices. The error message is: -- Snip -- mike:~$ invoice -n Illegal character \015 (carriage return) at /home/mschmitz/bin/invoice line 3. (Maybe you didn't strip carriage returns af