summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/configure/node.def17
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