blob: 3020fe666d9297793fe5c2464df4890558b12ffb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
mv -f /usr/include/linux/ntsync.h /usr/share/ntsync/ntsync.h_orig
cp -a /usr/share/ntsync/ntsync.h /usr/include/linux
echo -e ":: The ntsync module needs to be loaded manually the first time!"
echo -e " It should load automatically after a reboot."
}
post_upgrade() {
cp -a /usr/share/ntsync/ntsync.h /usr/include/linux
}
pre_remove() {
mv -f /usr/share/ntsync/ntsync.h_orig /usr/include/linux/ntsync.h
}
|