diff options
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | sysconf/config.boot.default | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index eb06ed44..2cbb92d1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,6 +22,7 @@ sysconf_DATA += sysconf/logrotate_messages sysconf_DATA += sysconf/motd.tail sysconf_DATA += sysconf/syslog.conf sysconf_DATA += sysconf/default_ssh +sysconf_DATA += sysconf/config.boot.default cpiop = find . ! -regex '\(.*~\|.*\.bak\|.*\.swp\|.*\#.*\#\)' -print0 | \ cpio -0pd diff --git a/sysconf/config.boot.default b/sysconf/config.boot.default new file mode 100644 index 00000000..941507f0 --- /dev/null +++ b/sysconf/config.boot.default @@ -0,0 +1,29 @@ +system { + ntp-server "69.59.150.135" + login { + user root { + authentication { + encrypted-password: "$1$$Ht7gBYnxI1xCdO/JOnodh." + } + } + user vyatta { + authentication { + encrypted-password: "$1$$Ht7gBYnxI1xCdO/JOnodh." + } + } + } + package { + repository community { + component: "main" + url: "http://archive.vyatta.com/vyatta" + } + } +} + +interfaces { + loopback lo { + } +} + +/* Warning: Do not remove the following line. */ +/* === vyatta-config-version: "cluster@1:dhcp-relay@1:dhcp-server@1:firewall@1:nat@2:serial@1:webgui@1" === */ |