mirror of
https://gitee.com/amber-ce/amber-pm
synced 2025-12-18 19:31:37 +08:00
32 lines
555 B
Bash
Executable File
32 lines
555 B
Bash
Executable File
#!/bin/bash
|
|
export PACKAGE_NAME="$DPKG_MAINTSCRIPT_PACKAGE"
|
|
|
|
|
|
case "$1" in
|
|
configure)
|
|
/var/lib/apm/$PACKAGE_NAME/files/bin/ace-init
|
|
systemctl daemon-reload
|
|
systemctl enable apm-daily-update
|
|
systemctl start apm-daily-update
|
|
systemctl restart apparmor.service || true
|
|
|
|
if [ -f /usr/lib/sysctl.d/apm.conf ];then
|
|
sysctl -p /usr/lib/sysctl.d/apm.conf
|
|
fi
|
|
# Send statistics data
|
|
/var/lib/apm/apm/files/feedback.sh &
|
|
|
|
|
|
;;
|
|
triggered)
|
|
amber-pm-configure-nvidia-host
|
|
amber-pm-dstore-patch
|
|
|
|
;;
|
|
esac
|
|
|
|
|
|
|
|
|
|
true
|