OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
update-notifier
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/20/2022 06:48:07 AM
rwxr-xr-x
📄
apt-cdrom-check
2.39 KB
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
apt-check
7.09 KB
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
apt_check.py
7.09 KB
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
backend_helper.py
4.73 KB
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
cddistupgrader
619 bytes
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
package-data-downloader
11.42 KB
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
package-system-locked
358 bytes
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
update-motd-fsck-at-reboot
2.71 KB
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
update-motd-hwe-eol
1.51 KB
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
update-motd-reboot-required
115 bytes
05/24/2019 09:46:37 AM
rwxr-xr-x
📄
update-motd-updates-available
1.45 KB
05/24/2019 09:46:37 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