vote up 1 vote down star

I wrote a very simple perl script, and now I want to make it executable from everywhere.

I know I could just drop it into /bin/, rename it from 'mytest.pl' -> 'mytest', and chmod +x, but is this standard practice? I noticed nothing in /bin/ is a perl script.

Also, I want it to be able to log to /var/logs/mytest/*

Are there any security issues I should be aware of?

flag

Why rename the script? – Manni May 20 at 10:36
to make it look more professional! like /usr/bin/cpan – aidan May 20 at 10:48

2 Answers

vote up 3 vote down check

It is preferable to put user-made scripts in /usr/local/bin , but it's your call whether it's worth worrying about this. As far as logging to /var/logs/mytest/*, you can try to make the script suid (this is sometimes not allowed for security) with a user that can write to the dir, or just make /var/logs/mytest world-writable.

link|flag
1  
Thanks Matt, I found a whole bunch of perl scripts in there and I'm now following their lead. – aidan May 20 at 10:56
1  
Some systems may need the perlsuid executable in order to run a Perl script with setuid privileges. perlsuid might not be installed by default (Debian splits it out into its own extra package (packages.debian.org/perl-suid) which isn't depended on) and has been deprecated in favor of using other mechanisms like sudo. – ephemient May 20 at 16:04
vote up 2 vote down

Instead of worrying about log file permissions issues, why not log to the system logger? That's what it's there for. See Sys::Syslog

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.