-
Notifications
You must be signed in to change notification settings - Fork 63
configuring the current repository with sbopkg
Thanks to slakmagik, since march 2011, this git repository is included in the default sbopkg set \o/
you can use it on -current setting these two variables in /etc/sbopkg/sbopkg.conf
REPO_BRANCH=${REPO_BRANCH:-current}
REPO_NAME=${REPO_NAME:-SBo-git}
then run sbopkg with the '-r' (remote sync) flag.
If you want to use it temporarly while having another default repository
sbopkg -V SBo-git/current -r
sbopkg -V SBo-git/current -i my_package_or_queue
would do.
the "current" branch gets deleted and re-created on every global merge, rebasing the modifications on the newer master, and this can confuse git a little so, for every new sync don't just launch "sbopkg -r" but
rm -fR /var/lib/sbopkg/SBo-git
sbopkg -r
the "rm -fR" step might not be necessary anymore with recent versions of sbopkg.
(tnx to idlemoor for the setup instructions and to slakmagik for the cli hints )