-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use package manager, not distro for installing podman
- Loading branch information
Showing
10 changed files
with
37 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...ain/podman/install/debianInstallScript.ts → src/main/podman/install/aptInstallScript.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
// Reference https://podman.io/docs/installation | ||
// first line is to remove a depracted apt source that will conflict with the official one | ||
export const script = `rm -rf /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list | ||
apt -y update -qq | ||
apt install -y podman`; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
3 changes: 1 addition & 2 deletions
3
.../podman/install/linuxMintInstallScript.ts → src/main/podman/install/yumInstallScript.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
// Same script as on https://podman.io/docs/installation, except the 'sudo' is removed as | ||
// sudo-prompt will not execute a command with sudo | ||
export const script = `apt -y update -qq | ||
apt -qq -y install podman`; | ||
export const script = 'dnf -y update && dnf -y install podman'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// Reference https://podman.io/docs/installation | ||
// biome-ignore lint/style/noUnusedTemplateLiteral: less diff for future changes | ||
export const script = `zypper install -y podman`; |