X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=filesystem%2Fetc%2Fprofile.d%2Fenvironment.sh;h=95dce05679534846aad55c42eff9b722136822d5;hb=eb9b839bb5a91c60cc4f6eb9d7e38ffbf73f0e90;hp=ed621d6ad409caf6ab1daabc8bf8065688d0af3b;hpb=c1380ecb6d9f7206fcb88fc01d584143146c6a1e;p=distro-setup diff --git a/filesystem/etc/profile.d/environment.sh b/filesystem/etc/profile.d/environment.sh index ed621d6..95dce05 100644 --- a/filesystem/etc/profile.d/environment.sh +++ b/filesystem/etc/profile.d/environment.sh @@ -1,6 +1,3 @@ -export ACME_TINY_WRAPPER_CERT_DIR=/p/c/machine_specific/$HOSTNAME/webservercerts -export ACME_TINY_PATH="/a/opt/acme-tiny/acme_tiny.py" - if [ -f $HOME/path_add-function ]; then . $HOME/path_add-function path_add /usr/sbin /usr/local/sbin /sbin @@ -63,7 +60,12 @@ fi # every user in a same group, so if you copy files there with exact # perms, that is probably not what you want. I don't use a system like # that. I don't care much either way, but the ubuntu one seems a bit -# more user friendly. -if (( EUID >= 1000 )); then - umask 002 -fi +# more user friendly, and copying files between them is a annoying with +# different umasks. However, it also makes it so if you create a file as +# a regular user then move it to become a system file, it's got slightly +# wrong permissions, and sometimes thing break. So, this outweighs the +# other things, stick with 022 umask always. +umask 022 +# this is how we could test for non-system user + +#if test "$(id -u)" -ge 1000; then : fi