1 |
brianr |
1.1 |
diff -urN smeserver-motd-0.1.old/createlinks smeserver-motd-0.1/createlinks |
2 |
|
|
--- smeserver-motd-0.1.old/createlinks 2016-06-27 18:43:11.000000000 +0100 |
3 |
|
|
+++ smeserver-motd-0.1/createlinks 2021-03-24 18:16:11.649632527 +0000 |
4 |
|
|
@@ -1,4 +1,28 @@ |
5 |
|
|
#! /usr/bin/perl -w |
6 |
|
|
+use esmith::Build::CreateLinks qw(:all); |
7 |
|
|
+# our event specific for updating with yum without reboot |
8 |
|
|
+$event = 'smeserver-motd-update'; |
9 |
|
|
+#add here the path to your templates needed to expand |
10 |
|
|
+#see the /etc/systemd/system-preset/49-koozali.preset should be present for systemd integration on all you yum update event |
11 |
|
|
+ |
12 |
|
|
+foreach my $file (qw( |
13 |
|
|
+ /etc/systemd/system-preset/49-koozali.preset |
14 |
|
|
+ /etc/profile.d/motd.sh |
15 |
|
|
+)) |
16 |
|
|
+{ |
17 |
|
|
+ templates2events( $file, $event ); |
18 |
|
|
+} |
19 |
|
|
+#action needed in case we have a systemd unit |
20 |
|
|
+event_link('systemd-default', $event, '10'); |
21 |
|
|
+event_link('systemd-reload', $event, '50'); |
22 |
|
|
+#action specific to this package |
23 |
|
|
+#event_link('action', $event, '30'); |
24 |
|
|
+#services we need to restart |
25 |
|
|
+#safe_symlink('restart', 'root/etc/e-smith/events/$event/services2adjust/<service>) |
26 |
|
|
+#and Server Manager panel link |
27 |
|
|
+#panel_link('somefunction', 'manager'); |
28 |
|
|
+ |
29 |
|
|
+ |
30 |
|
|
|
31 |
|
|
# Need some thought on when the templates should be expanded and when the action should be called. |
32 |
|
|
|