| Server IP : 65.1.115.158 / Your IP : 216.73.216.83 [ Web Server : Apache System : Linux ip-172-30-1-212 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 06:59:36 UTC 2025 x86_64 User : aeonx ( 1003) PHP Version : 8.3.3-1+ubuntu20.04.1+deb.sury.org+1 Disable Function : NONE Domains : 14 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /lib/ |
Upload File : |
#!/usr/bin/python3
import glob
import logging
import os
import sys
from CommandNotFound.db.creator import DbCreator
from CommandNotFound import CommandNotFound
if __name__ == "__main__":
if "--debug" in sys.argv[1:]:
logging.basicConfig(level=logging.DEBUG)
elif "--verbose" in sys.argv[1:]:
logging.basicConfig(level=logging.INFO)
db = CommandNotFound.dbpath
if not os.access(os.path.dirname(db), os.W_OK):
print("datbase directory %s not writable" % db)
sys.exit(0)
command_files = glob.glob("/var/lib/apt/lists/*Commands-*")
if len(command_files) > 0:
umask = os.umask(0o22)
col = DbCreator(command_files)
col.create(db)
os.umask(umask)