Stop with /acp

This commit is contained in:
Anthony Rose 2021-06-18 21:36:41 +01:00
parent 251913e5db
commit ed21638ed0
2 changed files with 2 additions and 26 deletions

View file

@ -1,23 +0,0 @@
#!/bin/sh
# Change variables below if needed.
TARGET_USER=acp
TARGET_GROUP=$TARGET_USER
TARGET_DIR="/$TARGET_USER"
# Create root directory. Fail if it cannot be created.
install -d -m 700 -o $TARGET_USER -g $TARGET_GROUP $TARGET_DIR || exit 1
# Create subdirectories.
install -d -o $TARGET_USER -g $TARGET_GROUP $TARGET_DIR/bin
install -d -o $TARGET_USER -g $TARGET_GROUP $TARGET_DIR/data
install -d -o $TARGET_USER -g $TARGET_GROUP $TARGET_DIR/doc
install -d -o $TARGET_USER -g $TARGET_GROUP $TARGET_DIR/etc
install -d -o $TARGET_USER -g $TARGET_GROUP $TARGET_DIR/lib
install -d -o $TARGET_USER -g $TARGET_GROUP $TARGET_DIR/include
install -d -o $TARGET_USER -g $TARGET_GROUP $TARGET_DIR/man
install -d -o $TARGET_USER -g $TARGET_GROUP $TARGET_DIR/share
install -d -o $TARGET_USER -g $TARGET_GROUP $TARGET_DIR/src
# Set up symlinks.
ln -s ../man $TARGET_DIR/share/man

View file

@ -21,15 +21,14 @@ then
fi
_acp_add_path () {
if ! [[ ":$PATH" =~ ":$1:" ]] && test -d "$1"
if ! [[ ":$PATH:" =~ ":$1:" ]] && test -d "$1"
then
PATH="$1:$PATH"
fi
export PATH
}
for dir in "/$USER/bin" \
"$HOME/bin" \
for dir in "$HOME/bin" \
"$HOME/.cargo/bin" \
"$HOME/opt/centos-git-common" \
/usr/local/sbin \