Skip to content

Commit

Permalink
update_v1.0.2: Corrected update script
Browse files Browse the repository at this point in the history
The -e parameter was printed into the file
  • Loading branch information
christianTF committed Feb 15, 2018
1 parent a0c54a0 commit 8b03020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbin/loxberryupdate/update_v1.0.2.pl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

$output = qx { mkdir /etc/systemd/system/apache2.service.d };
LOGINF $output;
$output = qx { echo -e "[Service]\nPrivateTmp=no" > /etc/systemd/system/apache2.service.d/privatetmp.conf };
$output = qx { echo "[Service]\nPrivateTmp=no" > /etc/systemd/system/apache2.service.d/privatetmp.conf };
LOGINF $output;

LOGINF "Adding PERL5LIB to Apache envvars";
Expand Down

0 comments on commit 8b03020

Please sign in to comment.