View Single Post
  #6   (View Single Post)  
Old 17th November 2013
albator albator is offline
Shell Scout
 
Join Date: Jul 2011
Posts: 98
Default

Quote:
Originally Posted by Martillo View Post
Do M:Tier packages integrate in the package system so that they can be pkg_delete'd or pkg_add -u(pdated)?
They provide a shell script called openup.
Looking at it shows it uses pkg_add -u :
Code:
$ grep "pkg_add -u" openup    
	_CMD="pkg_add -u ${pkg_opt}"
They mix two repositories :
Code:
$ egrep "MAIN|UPDATE"  openup      
PKG_PATH_MAIN="http://ftp.fr.openbsd.org/pub/OpenBSD/$(uname -r)/packages/$(arch -s)"
PKG_PATH_UPDATE="https://stable.mtier.org/updates/$(uname -r)/$(arch -s)"
export PKG_PATH=${PKG_PATH_UPDATE}:${PKG_PATH_MAIN}
Be aware though that if you use this tool, jggimi will say he cannot help you no more. ;-)
Only joking, thanks jggimi for helping me several times.

Last edited by albator; 17th November 2013 at 09:52 PM. Reason: spelling correction
Reply With Quote