aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2025-02-03 20:23:23 +0100
committerclyhtsuriva <aimeric@adjutor.xyz>2025-02-03 20:23:23 +0100
commit057de832a19af4e761c0583a7e16efbaa86b7ead (patch)
treeebfd5e9b8420c1ad3bd348f0e693dd609f0d36ca
parent3781523c17e896cdf630138f5811c19e1134ef17 (diff)
Add title to links in helper-scripts + add page about submodules in git
-rw-r--r--git/submodules.md11
-rw-r--r--proxmox/helper-scripts.md4
2 files changed, 13 insertions, 2 deletions
diff --git a/git/submodules.md b/git/submodules.md
new file mode 100644
index 0000000..905367b
--- /dev/null
+++ b/git/submodules.md
@@ -0,0 +1,11 @@
+# Submodules
+
+## Update
+
+```sh
+git submodule update --recursive --remote
+```
+
+> Update the registered submodules to match what the superproject
+> expects by cloning missing submodules, fetching missing commits in
+> submodules and updating the working tree of the submodules.
diff --git a/proxmox/helper-scripts.md b/proxmox/helper-scripts.md
index fab35cf..af1cfca 100644
--- a/proxmox/helper-scripts.md
+++ b/proxmox/helper-scripts.md
@@ -1,6 +1,6 @@
# Helper scripts for Proxmox
-[Proxmox Clean Orphaned LVM](https://community-scripts.github.io/ProxmoxVE/scripts?id=clean-orphaned-lvm)
+## [Proxmox Clean Orphaned LVM](https://community-scripts.github.io/ProxmoxVE/scripts?id=clean-orphaned-lvm)
> This script helps Proxmox users identify and remove orphaned LVM volumes that are no longer associated with any VM or LXC container. It scans all LVM volumes, detects unused ones, and provides an interactive prompt to delete them safely. System-critical volumes like root, swap, and data are excluded to prevent accidental deletion.
@@ -11,7 +11,7 @@ As a privileged user :
bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/clean-orphaned-lvm.sh)"
```
-[Proxmox VE Post Install](https://community-scripts.github.io/ProxmoxVE/scripts?id=post-pve-install)
+## [Proxmox VE Post Install](https://community-scripts.github.io/ProxmoxVE/scripts?id=post-pve-install)
> This script provides options for managing Proxmox VE repositories, including disabling the Enterprise Repo, adding or correcting PVE sources, enabling the No-Subscription Repo, adding the test Repo, disabling the subscription nag, updating Proxmox VE, and rebooting the system.