Move all shared into this new repo

This commit is contained in:
2020-04-02 15:48:20 -06:00
parent 27307f26f2
commit 66fd90a649
465 changed files with 61143 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Fixes pyenv permissions after installing new versions
# Even though I setfacl specifically on this dir, installing new versions
# forces a mask on the pyenv/versions/xyz folder, so this script fixes that
# and forces permissions back to my standard
# mReschke 2019-04-19
path=/usr/local/lib/pyenv
chown toor:staff $path -R
chmod 2775 $path
find $path -type d -exec chmod 2775 {} \;
setfacl -R -d -m user::rwx,group::rwx $path