13 lines
263 B
Plaintext
13 lines
263 B
Plaintext
{
|
|
|
|
my $rec = $DB->get('tt-rss') || $DB->new_record('tt-rss', { type => 'webapp' });
|
|
my $pw = $rec->prop('DbPassword');
|
|
|
|
if (not $pw){
|
|
$pw = `/usr/bin/openssl rand -base64 60 | tr -c -d '[:graph:]'`;
|
|
chomp($pw);
|
|
$rec->set_prop('DbPassword', $pw);
|
|
}
|
|
|
|
}
|