aboutsummaryrefslogtreecommitdiff
path: root/installpkg.go
AgeCommit message (Collapse)Author
2022-04-26installpkg: only untar what is neededSlack Coder
Avoid unarchiving the package's '/install' directory. Required files from the directory are installed already into the system's package database.
2022-04-23installpkg: Avoid using /install on target dirSlack Coder
Use a temporary randomly named directory named like 'installpkg-2052825695' for the package's metadata in its '/install' directory. It will help allow running multiple instances on the same target root directory by removing a point of conflict. Attempt to place this directory in the host's default temporary directory. If it does not exist, use the host's root path.
2022-04-13installpkg: remove print statementv0.0.4Slack Coder
2022-04-13installpkg: correct symlink locationSlack Coder
Create the 'packages','scripts','setup' symlinks in /var/log instead of the /var/log/pkgtools
2022-04-13installpkg: avoid modifying /install if it existsSlack Coder
Avoid modifying and removing the /install directory if it already exists on the system by exiting early.
2022-03-30Initial commitSlack Coder