diff options
author | Christian Breunig <christian@breunig.cc> | 2023-08-02 16:54:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 16:54:38 +0200 |
commit | 34f03461390c85ff5f62481d53fb8e6bc156a208 (patch) | |
tree | 713191df322033d8f528da97db4cdad5cfe29bc6 /src/migration-scripts/system/14-to-15 | |
parent | f8cc7f8ee7c87bd95198dfe6c28c966e840ab571 (diff) | |
parent | d1923b7b58795f0d9635ae0e8df110f591881bdf (diff) | |
download | vyos-1x-34f03461390c85ff5f62481d53fb8e6bc156a208.tar.gz vyos-1x-34f03461390c85ff5f62481d53fb8e6bc156a208.zip |
Merge pull request #2129 from sever-sever/T5427
T5427: Fix migration script arguments len expects 2 args
Diffstat (limited to 'src/migration-scripts/system/14-to-15')
-rwxr-xr-x | src/migration-scripts/system/14-to-15 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/migration-scripts/system/14-to-15 b/src/migration-scripts/system/14-to-15 index c055dad1f..feaac37de 100755 --- a/src/migration-scripts/system/14-to-15 +++ b/src/migration-scripts/system/14-to-15 @@ -11,7 +11,7 @@ ipv6_blacklist_file = '/etc/modprobe.d/vyatta_blacklist_ipv6.conf' from vyos.configtree import ConfigTree -if (len(sys.argv) < 1): +if len(sys.argv) < 2: print("Must specify file name!") sys.exit(1) |