Skip to content

Commit

Permalink
install explicit keyrings to containers
Browse files Browse the repository at this point in the history
  • Loading branch information
boogieeeee committed Jul 31, 2024
1 parent 8b2bcf5 commit 2d6a218
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libagr/container/host.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def create(self):
# create the container with pacstrap
with open(self.pacstrapconf_path, "w") as f:
f.write(self.pacmanconf(True))
packages = native.Native.packages # + self.keyrings
packages = native.Native.packages + self.keyrings
agrcmd.run_interactive("sudo", "pacstrap", "-C", self.pacstrapconf_path, self.rootfs_path, *packages)

# create pacman.conf for container
Expand Down
2 changes: 1 addition & 1 deletion src/libagr/defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
CACHE_PATH = os.path.join(BASE_PATH, CACHE_PATH_NAME)

CFG_PATH = os.path.join(BASE_PATH, CFG_PATH_NAME)
VERSION = "1.0.1"
VERSION = "1.0.2"
SRCINFO = ".SRCINFO"
PKGBUILD = "PKGBUILD"
PKGHASH = ".PKGHASH"
Expand Down

0 comments on commit 2d6a218

Please sign in to comment.