summaryrefslogtreecommitdiff
path: root/pcr/filesystem-nosystemd/profile
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2018-05-12 20:10:53 -0300
committerDavid P <megver83@parabola.nu>2018-05-12 20:10:53 -0300
commit06e5308d03bf3e9aa23ac1c970a1db9f4c4fc9e4 (patch)
tree2e3783dfb54dfa2e0b59c0ba524790ef13807dd0 /pcr/filesystem-nosystemd/profile
parentd0a0f66d2d0c1a5e0c07adbfdc022c6ab9ed1afe (diff)
downloadabslibre-06e5308d03bf3e9aa23ac1c970a1db9f4c4fc9e4.tar.gz
abslibre-06e5308d03bf3e9aa23ac1c970a1db9f4c4fc9e4.tar.bz2
abslibre-06e5308d03bf3e9aa23ac1c970a1db9f4c4fc9e4.zip
remove packages succeded by their [nonsystemd] versions
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'pcr/filesystem-nosystemd/profile')
-rw-r--r--pcr/filesystem-nosystemd/profile27
1 files changed, 0 insertions, 27 deletions
diff --git a/pcr/filesystem-nosystemd/profile b/pcr/filesystem-nosystemd/profile
deleted file mode 100644
index 60c1821dd..000000000
--- a/pcr/filesystem-nosystemd/profile
+++ /dev/null
@@ -1,27 +0,0 @@
-# /etc/profile
-
-#Set our umask
-umask 022
-
-# Set our default path
-PATH="/usr/local/sbin:/usr/local/bin:/usr/bin"
-export PATH
-
-# Load profiles from /etc/profile.d
-if test -d /etc/profile.d/; then
- for profile in /etc/profile.d/*.sh; do
- test -r "$profile" && . "$profile"
- done
- unset profile
-fi
-
-# Source global bash config
-if test "$PS1" && test "$BASH" && test -z ${POSIXLY_CORRECT+x} && test -r /etc/bash.bashrc; then
- . /etc/bash.bashrc
-fi
-
-# Termcap is outdated, old, and crusty, kill it.
-unset TERMCAP
-
-# Man is much better than us at figuring this out
-unset MANPATH