Skip to content

Commit 21c22af

Browse files
anoopcs9mergify[bot]
authored andcommitted
images/server: Use $basearch in ceph devbuilds repo file
Remove the hardcoded 'x86_64' value from generated repo file for ceph development builds and use standard $basearch dnf repo variable. Signed-off-by: Anoop C S <[email protected]>
1 parent 6bae989 commit 21c22af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

images/server/install-packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ref = r[0]["ref"]
3333
with open(dest, "w") as out:
3434
print(f"[ceph-{ref}]", file=out)
3535
print(f"name=Ceph Development Build ({ref})", file=out)
36-
print(f"baseurl={url}/x86_64", file=out)
36+
print(f"baseurl={url}/\$basearch", file=out)
3737
print("enabled=1", file=out)
3838
print("gpgcheck=0", file=out)
3939
EOF

0 commit comments

Comments
 (0)