diff options
author | hagbard <vyosdev@derith.de> | 2019-02-14 10:56:34 -0800 |
---|---|---|
committer | hagbard <vyosdev@derith.de> | 2019-02-14 10:56:34 -0800 |
commit | f58d0dd66bba0a47311e5649d2b4af17a016b5e0 (patch) | |
tree | 4fa0833faa87cab2f3962f31d750c75e222bd26e | |
parent | e796b6a9dbf8eaa66b746a75c3211d9ea7ac458b (diff) | |
download | vyatta-wanloadbalance-f58d0dd66bba0a47311e5649d2b4af17a016b5e0.tar.gz vyatta-wanloadbalance-f58d0dd66bba0a47311e5649d2b4af17a016b5e0.zip |
Bugfix: T258: wan loadbalance /var/run permission issue
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | scripts/vyatta-wanloadbalance.pl | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index a06ef86..3eeffd0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +vyatta-wanloadbalance (0.13.69+vyos2+current1) unstable; urgency=low + + * T258 wan load-balancing on vyos-1.2 permission issue /var/run + + -- hagbard <vyosdev@derith.de> Thu, 14 Feb 2019 10:55:45 -0800 + vyatta-wanloadbalance (0.13.68+vyos2+current1) unstable; urgency=medium [ Thomas Jepp ] diff --git a/scripts/vyatta-wanloadbalance.pl b/scripts/vyatta-wanloadbalance.pl index 9603c48..a64d494 100644 --- a/scripts/vyatta-wanloadbalance.pl +++ b/scripts/vyatta-wanloadbalance.pl @@ -317,7 +317,7 @@ GetOptions("valid-nexthop=s" => \$nexthop,) or usage(); ####main my $conf_file = '/var/run/load-balance/wlb.conf'; my $conf_lck_file = '/var/run/load-balance/wlb.conf.lck'; -`mkdir -p /var/run/load-balance`; +`sudo mkdir -p /var/run/load-balance`; ####are we just validating? if (defined $nexthop) { |