This commit is contained in:
committer
2024-05-19 21:49:24 -05:00
parent 30aba885ce
commit 7bcb821cef
2 changed files with 2 additions and 1 deletions

View File

@@ -104,6 +104,8 @@ deploy_file() {
chmod 755 ${_trg_path}/*.sh chmod 755 ${_trg_path}/*.sh
elif [[ ${file_name_trg} == "bin" ]] ; then elif [[ ${file_name_trg} == "bin" ]] ; then
chmod 755 ${_trg_path}/* chmod 755 ${_trg_path}/*
elif [[ ${file_name_trg} == "wms" ]] ; then
chmod 755 ${_trg_path}/*
fi fi
ls -al ${_trg_path} ls -al ${_trg_path}
@@ -245,7 +247,6 @@ if [ ${operation} == "dots" ] ; then
deploy_file "${dots_trg}/xorg/.*" "${file_path}/" deploy_file "${dots_trg}/xorg/.*" "${file_path}/"
# lemurs (display/login manager) # lemurs (display/login manager)
file_name=config
file_path=/etc/lemurs/wms file_path=/etc/lemurs/wms
mkdir -p ${file_path} mkdir -p ${file_path}
deploy_file "${dots_trg}/lemurs/*" "${file_path}/" deploy_file "${dots_trg}/lemurs/*" "${file_path}/"