diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-08-03 14:05:34 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-08-03 14:05:34 +0200 |
commit | 9a0eb1ef4e287ea1fb8c5f0d0f33fa278aa7f31b (patch) | |
tree | b4495d4b23c8857840d4ea64e2c3701c4f8ec6db | |
parent | 345df2d858f1337cb65946faa7e2b1e1d737a2df (diff) | |
download | vyatta-op-9a0eb1ef4e287ea1fb8c5f0d0f33fa278aa7f31b.tar.gz vyatta-op-9a0eb1ef4e287ea1fb8c5f0d0f33fa278aa7f31b.zip |
configure: move to vyos-1x
-rw-r--r-- | templates/configure/node.def | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/templates/configure/node.def b/templates/configure/node.def deleted file mode 100644 index 2e104c3..0000000 --- a/templates/configure/node.def +++ /dev/null @@ -1,17 +0,0 @@ -help: Enter configure mode -run: if [ `id -u` == 0 ]; then - echo "You are attempting to enter configuration mode as root." - echo "It may have unintended consequences and render your system" - echo "unusable until restart." - echo "Please do it as an administrator level VyOS user instead." - else - if grep -q -e '^overlay.*/filesystem.squashfs' /proc/mounts; then - echo "WARNING: You are currently configuring a live-ISO environment, changes will not persist until installed" - fi - history -w - export _OFR_CONFIGURE=ok - newgrp vyattacfg - unset _OFR_CONFIGURE - _vyatta_op_do_key_bindings - history -r - fi |