-
Notifications
You must be signed in to change notification settings - Fork 4
Implement projects as groups #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Arshdeep54
wants to merge
30
commits into
master
Choose a base branch
from
project-as-group
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
5a166ad
Add custom logs
Arshdeep54 6f9ca23
correct log file path
Arshdeep54 1772f4f
fix cargo test
Arshdeep54 6dd0690
fix log implementation
Arshdeep54 f46758a
adds debug statements as logs
Arshdeep54 d30e0b2
add debug flag in logging
Arshdeep54 518c01f
Implement projects as groups
Arshdeep54 e856086
Add watchdog update function
Arshdeep54 7d5e978
Restrict user to only login to his account
Arshdeep54 9b3b9e1
Update pam_ruser to pam_user
Arshdeep54 9dac407
Update validate user function
Arshdeep54 29b2cc7
Update ssh message with threads
Arshdeep54 badc2ed
Implement logging with fern
Arshdeep54 abcac32
Add logs filtering
Arshdeep54 80da0a0
Update handle_update to add new users
Arshdeep54 86ed573
Update logs and create_user function
Arshdeep54 e090e78
Fix fetching from master branch
Arshdeep54 c8b4a11
Add constant.rs and enums
Arshdeep54 94f9e0a
Update user's bashrc with group's bashrc
Arshdeep54 c116d0b
Update add to sudo and wheel group
Arshdeep54 ac21dab
Add auto-update feature in handle_auth
Arshdeep54 0f91224
Fix multiple appends in .bashrc
Arshdeep54 f7dd03c
Log sudo command on slack
Arshdeep54 045c7bc
Update based on last commit
Arshdeep54 6189738
Fix base_url in handle_update
Arshdeep54 cc23e54
Fix verbose logging
Arshdeep54 a17cf10
Add verbose level in config
Arshdeep54 b84fd19
Add default logs to watchdog.logs
Arshdeep54 58d6f92
Add dependencies logs in dependencies.logs
Arshdeep54 3d02069
Fix HOME env in update_user_bashrc
Arshdeep54 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pub const BASE_COMMIT_PATH: &str = "/opt/watchdog/base_commit.txt"; | ||
pub const CONFIG_PATH: &str = "/opt/watchdog/config.toml"; | ||
pub const LOG_PATH: &str = "/opt/watchdog/custom-logs"; | ||
pub const HOME_DIR: &str = "/opt/watchdog/users"; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not see these used anywhere. Is there a reason for including openssl?