Skip to content

Commit

Permalink
[Fix] added 'which curl' and 'which wget' for variable scoping of bin…
Browse files Browse the repository at this point in the history
…ary locations into internals.conf; issue #237
  • Loading branch information
rfxn committed Jul 14, 2017
1 parent 0af7f68 commit 3e978c8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
v1.6.2 | Jul 13 2017:
[Fix] signature updates using get_Remote_file would incorrect write update files into /; issue #242
[Fix] signature updates using get_remote_file() would incorrect write temporary update files into /; issue #242
[Fix] added 'which curl' and 'which wget' for variable scoping of binary locations into internals.conf; issue #237
[New] added support to send email through 'sendmail' binary as alternative to 'mail'; pr #241 & issue #238

v1.6.1 | May 28 2017:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.RELEASE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
v1.6.2 | Jul 13 2017:
[Fix] signature updates using get_Remote_file would incorrect write update files into /; issue #242
[Fix] signature updates using get_remote_file() would incorrect write temporary update files into /; issue #242
[Fix] added 'which curl' and 'which wget' for variable scoping of binary locations into internals.conf; issue #237
[New] added support to send email through 'sendmail' binary as alternative to 'mail'; pr #241 & issue #238

v1.6.1 | May 28 2017:
Expand Down
2 changes: 2 additions & 0 deletions files/internals/internals.conf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ ionice=`which ionice 2> /dev/null`
wc=`which wc 2> /dev/null`
mail=`which mail 2> /dev/null`
sendmail=`which sendmail 2> /dev/null`
wget=`which wget 2> /dev/null`
curl=`which curl 2> /dev/null`
pidof=`which pidof 2> /dev/null`
sed=`which sed 2> /dev/null`
stat=`which stat 2> /dev/null`
Expand Down

0 comments on commit 3e978c8

Please sign in to comment.