diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-02-21 03:36:04 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-02-21 03:36:04 +0000 |
commit | b162412cb5a1fe1ff919bd9f17bc63732bed036f (patch) | |
tree | 74782ad8d8d690587ee897abb76c4d220cdb30d5 | |
parent | 42955dbdd013254eaf9ef30454374953d050cd5f (diff) | |
download | pfsense-packages-b162412cb5a1fe1ff919bd9f17bc63732bed036f.tar.gz pfsense-packages-b162412cb5a1fe1ff919bd9f17bc63732bed036f.tar.bz2 pfsense-packages-b162412cb5a1fe1ff919bd9f17bc63732bed036f.zip |
It helps when we add the delete and add function to the correct file!
-rw-r--r-- | packages/tinydns/tinydns_domains.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/tinydns/tinydns_domains.xml b/packages/tinydns/tinydns_domains.xml index e5000ff9..18059469 100644 --- a/packages/tinydns/tinydns_domains.xml +++ b/packages/tinydns/tinydns_domains.xml @@ -148,6 +148,20 @@ </rowhelper> </field> </fields> + <custom_add_php_command> + system("touch /tmp/delete"); + tinydns_custom_php_changeip_command(); + tinydns_custom_php_install_command(); + tinydns_create_zone_file(); + tinydns_setup_ping_items(); + </custom_add_php_command> + <custom_delete_php_command> + system("touch /tmp/delete"); + tinydns_custom_php_changeip_command(); + tinydns_custom_php_install_command(); + tinydns_create_zone_file(); + tinydns_setup_ping_items(); + </custom_delete_php_command> <custom_php_resync_config_command> tinydns_create_zone_file(); tinydns_setup_ping_items(); |