diff options
author | John Turner <jturner.usa@gmail.com> | 2025-08-20 22:12:28 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-08-20 22:12:28 -0400 |
commit | e76c94c499a413f55a072a51360a3ff7b831b144 (patch) | |
tree | c874c9956c320cd5c522db435ebc7e4e9f93ac98 | |
parent | bb228574d78232d407b78f90faf39fff28cb6c5b (diff) | |
download | selinux-policy-e76c94c499a413f55a072a51360a3ff7b831b144.tar.gz |
fixup
-rw-r--r-- | src/file/userfile/sshfile.cil | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/file/userfile/sshfile.cil b/src/file/userfile/sshfile.cil index ac3ab86..f2c4597 100644 --- a/src/file/userfile/sshfile.cil +++ b/src/file/userfile/sshfile.cil @@ -13,9 +13,9 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see <https://www.gnu.org/licenses/>. -(in file.user - (block ssh - (blockinherit .file.user.template) - - (filecon "HOME_DIR/\.ssh" dir file_context) - (filecon "HOME_DIR/\.ssh/.*" file file_context))) +(block ssh + (block user + (block file + (blockinherit .file.user.template) + (filecon "HOME_DIR/\.ssh" dir file_context) + (filecon "HOME_DIR/\.ssh/.*" file file_context)))) |