X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=conflink;h=f62de8b454c20da5f6867abb02e347c7dd80688c;hb=1059b8ac11f567b9a8eec1e34a7ab6e791721dca;hp=e26be58e0693af8d3ce3ddb9e84bdba8a8e1f636;hpb=1f524e72136f1d10548bdc4f502c6405ba6dbcd0;p=distro-setup diff --git a/conflink b/conflink index e26be58..f62de8b 100755 --- a/conflink +++ b/conflink @@ -11,7 +11,8 @@ lnf() { /a/exe/lnf "$@"; } shopt -s nullglob -shopt -s extglob # note, already set with bash -l +shopt -s extglob +shopt -s dotglob # If we make a link back to the root, we stop going deeper into subdir_files. # This makes it so we can do subdir directories. @@ -70,7 +71,11 @@ done c_dirs=(/a/c{,/machine_specific/$HOSTNAME}) case $USER in iank) - files=(/p/c/machine_specific/*/filesystem/etc/ssh/*_key) + files=(/p/c/machine_specific/*/filesystem/etc/ssh/*_key + /p/c/filesystem/etc/openvpn/client/*.key + /p/c/filesystem/etc/openvpn/easy-rsa/keys/*.key + /p/c/machine_specific/kw/filesystem/etc/openvpn/client/*.key + ) if [[ -e $files ]]; then chmod 600 ${files[@]} fi @@ -106,11 +111,10 @@ case $USER in ##### end special extra stuff ##### sudo bash -c 'shopt -s nullglob; cd /etc/openvpn; for f in client/* server/*; do ln -sf $f .; done' - sudo bash -c 'shopt -s nullglob; cd /etc/openvpn; for f in server/*.key client/*.key; do chmod 600 $f; done' - m sudo -H -u traci "$BASH_SOURCE" + m sudo -H -u user2 "$BASH_SOURCE" ;; - traci) + user2) m common-file-setup ${c_dirs[@]} ;; *)