Created
November 11, 2015 09:51
-
-
Save iammart/e18c3dbded00db64af31 to your computer and use it in GitHub Desktop.
Centos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Add user | |
| adduser -s /bin/false -d %PATH% %USER% | |
| # Set user password | |
| passwd %USER% | |
| # Add permissions to ACL | |
| setfacl -R -d -m "u:%USER%:rwx" %PATH% | |
| setfacl -R -m "u:%USER%:rwx" %PATH% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment