Update READMEs

master
Shaun Reed 3 years ago
parent 59d482cad7
commit 245e04e083

@ -2,7 +2,7 @@
Playbooks Playbooks
- apt-up.yml - Playbook to update servers / groups ad hoc - apt-up.yml - Playbook to update servers / groups ad hoc
- bookstack-backup.yml - Playbook example for taking a backup of BookStack - bookstack-backup.yml - Playbook for taking a backup of BookStack
- hexo-backup.yml - Playbook example for taking a backup of Hexo - hexo-backup.yml - Playbook for taking a backup of Hexo
- hexo-install.yml - Playbook example to install and deploy the Hexo site generator - hexo-install.yml - Playbook to install and deploy the Hexo site generator

@ -21,5 +21,5 @@ cmake .. && cmake --build .
If cmake is not being used in a project, it can be built with `g++` manually using If cmake is not being used in a project, it can be built with `g++` manually using
the commands outlined in `*/.vscode/tasts.json`, or by using VSCode to open the example the commands outlined in `*/.vscode/tasks.json`, or by using VSCode to open the example
and running the build task. and running the build task.

@ -16,5 +16,5 @@ klips/cpp/datastructs
├── singlelist # Singly linked list ├── singlelist # Singly linked list
├── stacklist # Stack implementation using linked list ├── stacklist # Stack implementation using linked list
├── templates # Templated data structures ├── templates # Templated data structures
└── vector └── vector # Custom Vector implementation
``` ```

@ -2,10 +2,10 @@
#### newuser.sh #### newuser.sh
- Script to add new user, run with sudo if you want to configure / allow user to sudo - Script to add new user, run with sudo if you want to configure / allow user to sudo
- `./adduser` - (Prints help text) - `./newuser` - (Prints help text)
- `./adduser <name> <userID>` - (Command doesn't need sudo if new user doesn't need sudo) - `./newuser <name> <userID>` - (Command doesn't need sudo if new user doesn't need sudo)
- `sudo ./adduser <name> <userID>` - `sudo ./newuser <name> <userID>`
- `sudo ./adduser jeff 1005` - (Creates jeff user and assign userID to 1005) - `sudo ./newuser jeff 1005` - (Creates jeff user and assign userID to 1005)
- Follow prompts to configure password / sudo depending on needs of new user - Follow prompts to configure password / sudo depending on needs of new user
- After the user is created, append them to any needed groups with `sudo usermod -aG groupname username` - After the user is created, append them to any needed groups with `sudo usermod -aG groupname username`
@ -13,3 +13,4 @@
#### fix-vbox.sh #### fix-vbox.sh
- Script to fix a common issue in vbox VMs - Script to fix a common issue in vbox VMs
- Fix for issue where a portion of the VM screen is not clickable - Fix for issue where a portion of the VM screen is not clickable

Loading…
Cancel
Save