-
-
Save gotbadger/1f8bee604befd79e7adc717418d7a791 to your computer and use it in GitHub Desktop.
Revisions
-
gotbadger revised this gist
Jul 17, 2016 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,10 +4,10 @@ save: make -j save_config save_commands save_scripts save_config: ssh 192.168.1.1 "/opt/vyatta/bin/vyatta-op-cmd-wrapper show configuration" 2> /dev/null > config.txt save_commands: ssh 192.168.1.1 "/opt/vyatta/bin/vyatta-op-cmd-wrapper show configuration commands" 2> /dev/null > commands.txt save_scripts: scp -r 192.168.1.1:/config/scripts/ . 2> /dev/null -
caius revised this gist
Jul 6, 2016 . No changes.There are no files selected for viewing
-
caius created this gist
Jul 6, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ .PHONY: save save_config save_commands save_scripts save: make -j save_config save_commands save_scripts save_config: ssh earl "/opt/vyatta/bin/vyatta-op-cmd-wrapper show configuration" 2> /dev/null > config.txt save_commands: ssh earl "/opt/vyatta/bin/vyatta-op-cmd-wrapper show configuration commands" 2> /dev/null > commands.txt save_scripts: scp -r earl:/config/scripts/ . 2> /dev/null