Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/pacman.py
blob: 9c427aff77b32fad0ab3f0de661ec93358b75965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import logging
import pathlib
import time

from .general import SysCommand
from .output import log


def run_pacman(args :str, default_cmd :str = 'pacman') -> SysCommand:
	"""
	A centralized function to call `pacman` from.
	It also protects us from colliding with other running pacman sessions (if used locally).
	The grace period is set to 10 minutes before exiting hard if another pacman instance is running.
	"""
	pacman_db_lock = pathlib.Path('/var/lib/pacman/db.lck')

	if pacman_db_lock.exists():
		log(_('Pacman is already running, waiting maximum 10 minutes for it to terminate.'), level=logging.WARNING, fg="red")

	started = time.time()
	while pacman_db_lock.exists():
		time.sleep(0.25)

		if time.time() - started > (60 * 10):
			log(_('Pre-existing pacman lock never exited. Please clean up any existing pacman sessions before using archinstall.'), level=logging.WARNING, fg="red")
			exit(1)

	return SysCommand(f'{default_cmd} {args}')