We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e062a9a commit 8e5f0e3Copy full SHA for 8e5f0e3
addons/upgrade/to-14.1-crypt-at-rest.pl
@@ -58,9 +58,9 @@ sub update_config_controller {
58
for my $section ($ini->Sections()) {
59
for my $param ($ini->Parameters($section)) {
60
next if (!exists $fields2Encrypt{$param});
61
- print "Changing $section.$param\n";
62
my $val = $ini->val($section, $param);
63
next if length($val) == 0;
+ print "Changing $section.$param\n";
64
$val = pf::config::crypt::pf_encrypt($val);
65
$ini->setval($section, $param, $val);
66
$changed |= 1;
0 commit comments