-
-
Notifications
You must be signed in to change notification settings - Fork 650
Docs: Explain TFTP and internal database #2904
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c7dee61
Docs: Move repository management into own file
SchoolGuy dda8554
Docs: Add note about the new CLI
SchoolGuy f1bd709
Docs: Remove mkgrub.sh mention
SchoolGuy 9d44748
Docs: Add limitation inside Uyuni
SchoolGuy ef8c54b
Docs: Add explanations for TFTP-Directory & DB
SchoolGuy 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
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 h
B068
idden 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,36 @@ | ||
***************** | ||
Internal Database | ||
***************** | ||
|
||
.. note:: This document describes advanced topics for system administrators. | ||
|
||
The internal database of Cobbler is held at ``/var/lib/cobbler/collections``. | ||
|
||
Items | ||
##### | ||
|
||
An item in Cobbler is a set of attributes grouped together and given a name. An example for this would be a ``distro``. | ||
On disk those items are represented using JSON. By default, the JSON is minified, however you can make the serializer | ||
produce "pretty" JSON files by changing ``serializer_pretty_json`` to ``true`` in the Cobbler Settings. | ||
|
||
The name of the saved file is the name of the item. | ||
|
||
Collections | ||
########### | ||
|
||
A collection in Cobbler is a number of ``n`` Cobbler items that are living inside the same folder. | ||
|
||
Notes | ||
##### | ||
|
||
If you want to have a backup use the ``scm_track`` module of Cobbler. | ||
It will use Git for version control of the complete ``/var/lib/cobbler/`` folder. | ||
|
||
A rename operation does the following: Delete the item with the old name and create a new item with the new name. This is | ||
reflected on disk and thus if Cobbler is being terminated at the wrong point in time, this specific item | ||
can get lost. It's unlikely, but if you have items dependent onto that item you will receive errors on the | ||
next Cobbler startup. | ||
|
||
If you deem yourself a Cobbler expert you may edit the JSON files directly once Cobbler is not running. If Cobbler is | ||
running you risk a corruption of the complete application. Please take all actions here with huge precautions and | ||
only if you have backups! |
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.
Uh oh!
There was an error while loading. Please reload this page.