diff --git a/Code Management/Git/Gitlab/Gitlab-CI/1.md b/Code Management/Git/Gitlab/Gitlab-CI/1.md new file mode 100644 index 0000000..e69de29 diff --git a/Code Management/Git/Gitlab/Gitlab-CI/gitlab-ci.yaml b/Code Management/Git/Gitlab/Gitlab-CI/gitlab-ci.yaml new file mode 100644 index 0000000..8ae436c --- /dev/null +++ b/Code Management/Git/Gitlab/Gitlab-CI/gitlab-ci.yaml @@ -0,0 +1,25 @@ +job1: + stage: hello_stage + script: echo "Hi :)" + +job2: + stage: hello_stage + script: echo "Hello :)" + +job3: + stage: hello_stage + script: echo "How Are You :)" + needs: + - job2 + +Build_job1: + stage: build_stage + script: echo "Building Code" + needs: + - job3 + tags: + - build_runner + +stages: + - hello_stage + - build_stage \ No newline at end of file diff --git a/Linux/LPIC1/4-dpkg.md b/Linux/LPIC1/4-dpkg.md new file mode 100644 index 0000000..7537c59 --- /dev/null +++ b/Linux/LPIC1/4-dpkg.md @@ -0,0 +1,94 @@ + +# ๐Ÿ“ฆ `dpkg` โ€“ Debian Package Manager + +`dpkg` is the package manager for Debian-based Linux distributions. It is used to install, remove, and manage `.deb` packages directly. + +### ๐Ÿ“˜ Basic Syntax + +```bash +dpkg [