You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
395 B
13 lines
395 B
13 years ago
|
#!/usr/bin/perl -w
|
||
|
|
||
|
use esmith::Build::CreateLinks qw(:all);
|
||
|
|
||
|
safe_symlink("../daemontools" , 'root/etc/rc.d/init.d/supervise/mailman');
|
||
|
safe_symlink("/var/service/mailman" , 'root/service/mailman');
|
||
|
safe_touch("root/var/service/mailman/down");
|
||
|
|
||
|
foreach my $event (qw/webapps-update ipasserelle-update bootstrap-ldap-save/){
|
||
|
event_link("ipasserelle-mailman-init-domain", "$event", "55");
|
||
|
}
|
||
|
|