diff options
author | Kim <UnicronNL@users.noreply.github.com> | 2016-08-09 11:22:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-09 11:22:52 +0200 |
commit | acea7eb6cb007b5a3554d5874a25fa9c8e469a51 (patch) | |
tree | 2a1de49ccb1525546b01187d08b6232a61d90a75 | |
parent | a7cc5e8d9c9fc90578ba93377d1254a1140003d7 (diff) | |
download | live-boot-acea7eb6cb007b5a3554d5874a25fa9c8e469a51.tar.gz live-boot-acea7eb6cb007b5a3554d5874a25fa9c8e469a51.zip |
Update 9990-vyos.sh
Error in if statement, this caused configuration to be overwritten on boot.
-rwxr-xr-x | components/9990-vyos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/9990-vyos.sh b/components/9990-vyos.sh index 4306443..77d974f 100755 --- a/components/9990-vyos.sh +++ b/components/9990-vyos.sh @@ -20,7 +20,7 @@ Vyos () if [ -d /root/opt/vyatta/etc/config ] then - if [ -d ${unioncfgpath}/config + if [ -d ${unioncfgpath}/config ] then mount -o bind ${unioncfgpath}/config /root/opt/vyatta/etc/config else |