aps/altools/repo

19 lines
543 B
Text
Raw Normal View History

2021-08-24 08:32:32 +03:00
#!/bin/sh
########################################
# Repo, a repository manager for alnux #
########################################
2021-08-25 14:01:36 +03:00
. /etc/al/config
case $1 in
# add a repo
add) git clone https://${3}/${2}.git ${install_root}/var/aps/repos/${2}
echo "${2}" >> ${install_root}/etc/al/repo.conf
;;
2021-08-25 14:01:36 +03:00
# update a repo
update) pushd && cd ${install_root}/var/aps/repos/${2} && git pull && popd ;;
# destroy a repo (remove)
destroy) rm -rfv ${install_root}/var/aps/repos/${2}
sed -i "/^${2}/d" ${install_root}/etc/al/repo.conf
;;
esac