/usr/share/dirsrv/updates/exampleupdate.pl is in 389-ds-base 1.3.7.10-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # BEGIN COPYRIGHT BLOCK
# Copyright (C) 2009 Red Hat, Inc.
# All rights reserved.
#
# License: GPL (version 3 or any later version).
# See LICENSE for details.
# END COPYRIGHT BLOCK
#
sub pre {
my ($inf, $configdir) = @_;
}
sub preinst {
my ($inf, $inst, $dseldif, $conn) = @_;
}
sub runinst {
my ($inf, $inst, $dseldif, $conn) = @_;
}
sub postinst {
my ($inf, $inst, $dseldif, $conn) = @_;
}
sub post {
my ($inf, $configdir) = @_;
}
|