เวอร์ชั่นสั้น:
cat /var/run/reboot-required.pkgs
คำอธิบาย:
ดูเหมือนว่ามีวิธีที่ง่ายในการแยกข้อมูลที่ต้องการโดยอัตโนมัติ
ภายใน.deb
ไฟล์มีไฟล์ควบคุมสำหรับการติดตั้งรวมถึงpostinst
(เรียกใช้หลังจากการติดตั้ง)
ยกตัวอย่างเช่นในlinux-image-2.6.35-25-generic_2.6.35-25.44_amd64.deb
,
postinst
รวมถึง
my $notifier = "/usr/share/update-notifier/notify-reboot-required";
my $warn_reboot = 'Yes'; # Warn that we are installing a version of
# the kernel we are running
และ
# Warn of a reboot
if (-x $notifier) {
system($notifier);
}
สคริปต์เปลือก
/usr/share/update-notifier/notify-reboot-required
การปรับปรุงและ
/var/run/reboot-required
/var/run/reboot-required.pkgs
ไฟล์หลังมีรายการแพ็กเกจที่ร้องขอการรีบูต
/var/run/reboot-required
ถูกสร้างขึ้นหนึ่งวันก่อนหน้านี้ แต่ไม่มี/var/run/reboot-required.pkgs
ไฟล์ @ Ubuntu 16.04.5 LTS