diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2008-07-25 14:56:16 +0000 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2008-07-25 14:56:16 +0000 |
commit | 062638fb818c5632581f25f503684335b094be04 (patch) | |
tree | 9fb4d60e1c7e4fa00da89bb02cde57d03884bd8e | |
parent | 573add99eb1632e43707acd086d7010d08f465d5 (diff) | |
download | vyatta-cfg-system-062638fb818c5632581f25f503684335b094be04.tar.gz vyatta-cfg-system-062638fb818c5632581f25f503684335b094be04.zip |
add dnsmasq package to be included in the build
-rw-r--r-- | debian/control | 3 | ||||
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/control b/debian/control index 214be062..20237cd1 100644 --- a/debian/control +++ b/debian/control @@ -33,7 +33,8 @@ Depends: sed (>= 4.1.5), usbutils, tasksel, snmp, - tcpdump + tcpdump, + dnsmasq Pre-Depends: bash-completion Suggests: util-linux (>= 2.13-5), net-tools, diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 61a4842a..91e5f1e0 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 openhpid vyatta-keepalived ipvsadm; do +for init in ntp ssh snmpd openhpid vyatta-keepalived ipvsadm dnsmasq; do update-rc.d -f ${init} remove >/dev/null done |