12 lines
471 B
Perl
12 lines
471 B
Perl
#!/usr/bin/perl -w
|
|
|
|
use esmith::Build::CreateLinks qw(:all);
|
|
|
|
# This script creates the symlinks needed by this RPM
|
|
# Specific support exists to create symlinks within e-smith web "panels"
|
|
# and for links from named "events" directories into the "actions" directory
|
|
|
|
$event = "smeserver-mod_deflate-update";
|
|
safe_symlink("reload-or-restart", "root/etc/e-smith/events/$event/services2adjust/httpd-e-smith");
|
|
templates2events("/etc/httpd-e-smith/conf/httpd.conf", $event);
|