su - softwareUser -c /path/to/my/script.pl

This should work, but you may also be able to use: fork, POSIX::setuid, exec(). I've used this on with perl 5.8.5 on AIX.

Opening to a file with a variable should work fine. You have this...

my $confgiFile = '/path/to/configFile'; open ( CONFIG, ">$config" ) or die "FATAL :: failure configuring - $!\ +n\n"; print CONFIG $config; # $config is populated much earlier close(CONFIG);

So you are setting $confgiFile to a path, but you are opening $config. Are these two the same here (e.g. is this a typo)? One thing I'd suggest is to put the file name that you pass to 'open' in the 'die' as well so you can sanity check what it is trying to do. The only other thing I can suggest is to check your umask just before the open, though I suspect it's probably ok.


In reply to Re: perl 5.6.1 on AIX 5.1 doesn't open() a $var, only real path by bluto
in thread perl 5.6.1 on AIX 5.1 doesn't open() a $var, only real path by jptxs

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.