diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-11-22 08:31:53 -0800 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-11-22 08:31:53 -0800 |
commit | 095a9697beee737f0e53c1b16039b76278ecdd33 (patch) | |
tree | 38ec35898ec163cbaf9064554576e61b15f3d7c5 | |
parent | 6424212bcbbcadfbbfdb14f65843e87645d7897c (diff) | |
download | vyatta-cfg-qos-095a9697beee737f0e53c1b16039b76278ecdd33.tar.gz vyatta-cfg-qos-095a9697beee737f0e53c1b16039b76278ecdd33.zip |
Fix pppoe qos policy application
-rwxr-xr-x | scripts/ppp/qos | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/ppp/qos b/scripts/ppp/qos index b510cae..326ce38 100755 --- a/scripts/ppp/qos +++ b/scripts/ppp/qos @@ -1,7 +1,9 @@ #! /bin/bash - -/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper begin +API=/bin/cli-shell-api +session_env=$($API getSessionEnv $PPID) +eval $session_env +$API setupSession /opt/vyatta/sbin/vyatta-qos.pl --start-interface $1 -/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper end +$API teardownSession |