OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
update-notifier
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:50:42 AM
rwxr-xr-x
📄
apt-cdrom-check
2.39 KB
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
apt-check
18.99 KB
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
apt_check.py
18.99 KB
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
backend_helper.py
4.8 KB
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
cddistupgrader
619 bytes
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
package-data-downloader
11.42 KB
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
package-system-locked
358 bytes
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
update-motd-fsck-at-reboot
2.71 KB
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
update-motd-hwe-eol
1.51 KB
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
update-motd-reboot-required
115 bytes
03/04/2024 11:04:19 AM
rwxr-xr-x
📄
update-motd-updates-available
1.66 KB
03/04/2024 11:04:19 AM
rwxr-xr-x
Editing: package-system-locked
Close
#!/bin/sh # check if package system is locked # return 0 if unlocked, 2 if locked, 1 on error set -e for f in /var/lib/dpkg/lock /var/cache/apt/archives/lock \ /var/lib/apt/lists/lock /run/unattended-upgrades.lock; do [ -e $f ] || continue # fuser succeeds if there is at least one user if fuser $f; then exit 2 fi done exit 0