Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pystall/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
micro : ZIPResource
Instance to download and install micro console editor.
NOTE: Not yet implemented, just downloads and extracts files.

apache-php : APTResource
Instance to download and install a basic apache2 & php7.3 server.


Examples
Expand All @@ -77,7 +80,7 @@

DEBIAN_BASED = ["ubuntu",
"zorin",
"lunixmint",
"linuxmint",
"parrot",
]

Expand Down Expand Up @@ -150,6 +153,8 @@

micro = TARBALLResource("Micro editor", "https://github.com/zyedidia/micro/releases/download/v1.4.1/micro-1.4.1-linux64.tar.gz")

apache-php = APTResource("Apache2 PHP Server", ["apache2", "php7.3*"])

if distro.id() in ARCH_BASED:
"""TODO: Define arch equivalent resources here"""

Expand Down