diff options
-rw-r--r-- | debian/changelog | 13 | ||||
-rw-r--r-- | etc/bash_completion.d/vyatta-op | 3 | ||||
-rw-r--r-- | templates/connect/interface/node.tag/node.def | 4 |
3 files changed, 17 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 82392e3..86e17bc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +vyatta-op (0.13.245+oxnard5) unstable; urgency=low + + * Bugfix 7896: make the pppoe log write as the root user + + -- John Southworth <john.southworth@vyatta.com> Tue, 13 Mar 2012 22:39:02 +0000 + +vyatta-op (0.13.245+oxnard4) unstable; urgency=low + + * Bugfix 7527: Don't override VYATTA_PAGER value if it was previously + set + + -- John Southworth <john.southworth@vyatta.com> Tue, 13 Mar 2012 21:33:56 +0000 + vyatta-op (0.13.245+oxnard3) unstable; urgency=low * ping: fix error handling diff --git a/etc/bash_completion.d/vyatta-op b/etc/bash_completion.d/vyatta-op index f638488..65dd701 100644 --- a/etc/bash_completion.d/vyatta-op +++ b/etc/bash_completion.d/vyatta-op @@ -32,7 +32,8 @@ test -z "$_vyatta_default_pager" && \ --auto-buffers\ --no-lessopen\ $_vyatta_less_options" -declare -x VYATTA_PAGER=$_vyatta_default_pager +test -z "$VYATTA_PAGER" && \ + declare -x VYATTA_PAGER=$_vyatta_default_pager _vyatta_op_do_key_bindings () { diff --git a/templates/connect/interface/node.tag/node.def b/templates/connect/interface/node.tag/node.def index dd806e3..ab53eb8 100644 --- a/templates/connect/interface/node.tag/node.def +++ b/templates/connect/interface/node.tag/node.def @@ -22,7 +22,7 @@ run: /dev/null 2>&1 & ) else # PPPOE, PPPOA, WLM interfaces are started directly - ( umask 0; sudo /usr/sbin/pppd call $IFNAME > \ - /tmp/${IFNAME}.log 2>&1 & ) + ( umask 0; sudo /usr/sbin/pppd call $IFNAME \ + | sudo tee /tmp/${IFNAME}.log 2>&1 & ) fi fi |