summaryrefslogtreecommitdiff
path: root/usermod
diff options
context:
space:
mode:
Diffstat (limited to 'usermod')
-rwxr-xr-xusermod22
1 files changed, 0 insertions, 22 deletions
diff --git a/usermod b/usermod
deleted file mode 100755
index a47193a..0000000
--- a/usermod
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env bash
-
-fetch_portage_tree() {
- if [[ ! -d /usr/portage/.git ]] ; then
- cd /usr/portage && git init > /dev/null 2>&1
- git remote add origin git://anongit.gentoo.org/repo/gentoo.git
- git config core.sparsecheckout true
- echo "profiles/*" >> .git/info/sparse-checkout
- echo "metadata/*" >> .git/info/sparse-checkout
- echo "eclass/*" >> .git/info/sparse-checkout
- echo ".gitignore" >> .git/info/sparse-checkout
- git pull --depth=1 origin master > /dev/null 2>&1
- git branch -u origin/master master > /dev/null 2>&1
- rm -rf /usr/portage/profiles/updates > /dev/null 2>&1
- fi
-}
-
-main() {
- fetch_portage_tree
-}
-
-main