summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2009-02-11 16:34:19 -0800
committerStephen Hemminger <stephen.hemminger@vyatta.com>2009-02-11 16:34:19 -0800
commit9ef39ba24898722bcebbd625c5dffd39977a8614 (patch)
tree28e27f7c5a3949f774a938344b671e013721f7ed /scripts
parent7e26c87ea72f5f92121512e49d9adfb2bcc4c2e9 (diff)
downloadvyatta-cfg-9ef39ba24898722bcebbd625c5dffd39977a8614.tar.gz
vyatta-cfg-9ef39ba24898722bcebbd625c5dffd39977a8614.zip
Remove script for vyatta-cfg-reload
Moved it back over to vyatta-cfg-quagga
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vyatta-cfg-reload59
1 files changed, 0 insertions, 59 deletions
diff --git a/scripts/vyatta-cfg-reload b/scripts/vyatta-cfg-reload
deleted file mode 100755
index bf8f5e7..0000000
--- a/scripts/vyatta-cfg-reload
+++ /dev/null
@@ -1,59 +0,0 @@
-#! /bin/bash
-# Author: Stephen Hemminger
-# Date: 2009
-# Description: reload portion of configurateion
-
-# **** License ****
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License version 2 as
-# published by the Free Software Foundation.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-#
-# This code was originally developed by Vyatta, Inc.
-# Portions created by Vyatta are Copyright (C) 2006, 2007, 2008 Vyatta, Inc.
-# All Rights Reserved.
-# **** End License ****
-
-if [ $# -eq 0 ]; then
- echo "Usage: $0 config path ..."
- exit 1
-fi
-
-if [ $EUID -ne 0 ]; then
- echo "Must be root"
- exit 1
-fi
-
-T=$IFS; IFS="/"
-path=/opt/vyatta/config/active/protocols/"$*"
-IFS=$T
-
-# No point in reloading if that portion of config doesn't exist
-if [ ! -d $path ]; then
- echo "$path does not exist"
- exit 1
-fi
-
-# Begin reloading transaction
-/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper begin || exit 1
-
-# In case of error undo
-trap "/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper end" EXIT HUP INT QUIT TERM
-
-# Save current configuration
-tmp=/tmp/${daemon}-restart.$$
-/opt/vyatta/sbin/vyatta-save-config.pl $tmp || exit 1
-
-# Erase portion of active configuration for that protocol
-rm -fr $path
-
-# Reload causing configuration to activate - implies commit
-/opt/vyatta/sbin/vyatta-load-config.pl $tmp || exit 1
-
-# remove tmp file if successful
-rm $tmp
-