diff options
author | Stig Thormodsrud <stig@uffda.(none)> | 2007-11-04 11:17:22 -0800 |
---|---|---|
committer | Stig Thormodsrud <stig@uffda.(none)> | 2007-11-04 11:17:22 -0800 |
commit | da563fa3127254122f6c4c6e86b852fdb3ca5180 (patch) | |
tree | 39e1c64a9e44c9f0d00d106c8db26875313142bf /debian | |
parent | 604a1aaeee3cd3386febf5099936359b3647d56d (diff) | |
download | vyatta-cfg-system-da563fa3127254122f6c4c6e86b852fdb3ca5180.tar.gz vyatta-cfg-system-da563fa3127254122f6c4c6e86b852fdb3ca5180.zip |
Add vrrp to eureka.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/debian/control b/debian/control index 9e08e100..13652305 100644 --- a/debian/control +++ b/debian/control @@ -12,7 +12,7 @@ Depends: bash (>= 3.1), perl (>= 5.8.8), procps (>= 1:3.2.7-3), coreutils (>= 5.97-5.3), - vyatta-cfg, sysv-rc, ifrename, ntp, sysklogd, busybox, ssh, whois, sudo, snmpd + vyatta-cfg, sysv-rc, ifrename, ntp, sysklogd, busybox, ssh, whois, sudo, snmpd, keepalived Suggests: util-linux (>= 2.13-5), net-tools, ethtool, diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 7450b08a..a317354a 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -7,7 +7,7 @@ bindir=@bindir@ sbindir=@sbindir@ # remove init of daemons that we start/stop -for init in ntp ssh snmpd; do +for init in ntp ssh snmpd keepalived ipvsadm; do update-rc.d -f ${init} remove >/dev/null done @@ -23,7 +23,8 @@ if [ "$sysconfdir" != "/etc" ]; then default/ssh ssh/ssh_host_key quagga/daemons quagga/zebra.conf \ quagga/bgpd.conf quagga/ospfd.conf quagga/ospf6d.conf \ quagga/ripd.conf quagga/ripngd.conf quagga/isisd.conf \ - snmp/snmpd.conf snmp/snmptrapd.conf + snmp/snmpd.conf snmp/snmptrapd.conf keepalived/keepalived.conf \ + ipvsadm.rules default/ipvsadm do [ -f /etc/$conf ] && mv -f /etc/$conf /etc/$conf.vyatta-save touch /etc/$conf |