Skip to content

Commit 8ec3693

Browse files
committed
checking off TODOs
1 parent 8f414fa commit 8ec3693

File tree

7 files changed

+16
-22
lines changed

7 files changed

+16
-22
lines changed

TODO.txt

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
2-
# https://kind.sigs.k8s.io/docs/user/quick-start/#installing-with-a-package-manager
3-
4-
# Cloning into '/home/mvim/.phpenv/plugins/php-build'...
5-
how do i revert bad apt repos???
6-
. Better logging
7-
. Fedora
8-
. README
9-
. Docs
10-
. Creds
11-
. Do an audit
1+
. new server
2+
. fedora impl
3+
. README/docs
4+
. push

ci_cd/ubuntu.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ unit["AWS_CLI"]="/usr/local/bin/aws"
3939
unit["Azure_CLI"]="/usr/bin/az"
4040
unit["Google_Cloud_CLI"]="/snap/bin/gcloud"
4141
unit["Digital_Ocean_CLI"]="/snap/bin/doctl"
42-
#unit["Kubernetes_Kind"]=""
42+
unit["Kubernetes_Kind"]="/usr/local/bin/kind"
4343
unit["Kubectl"]="/usr/bin/kubectl"
4444
unit["Helm"]="/snap/bin/helm"
4545
unit["Terraform"]="/snap/bin/terraform"
@@ -135,8 +135,8 @@ unit["Meld"]="/usr/bin/meld"
135135

136136

137137
## PHP
138-
unit["PHP"]=""
139-
unit["Composer"]=""
138+
unit["PHP"]="/usr/bin/php"
139+
unit["Composer"]="/usr/local/bin/composer"
140140
unit["phpenv"]="$HOME/.phpenv/bin/phpenv"
141141
unit["PhpStorm"]="/snap/bin/phpstorm"
142142
unit["VSCode_PHP"]="$HOME/.vscode/extensions/%php%"

systems/shared/PHP/phpenv.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,5 @@ git clone https://github.com/phpenv/phpenv.git ~/.phpenv
66

77
echo 'export PATH="$HOME/.phpenv/bin:$PATH"' >> ~/.bashrc
88
echo 'eval "$(phpenv init -)"' >> ~/.bashrc
9-
source ~/.bashrc
109

11-
# plugins
12-
git clone https://github.com/phpenv/php-build.git ~/.phpenv/plugins/php-build
13-
git clone https://github.com/CHH/phpenv-composer.git ~/.phpenv/plugins/phpenv-composer
10+
source ~/.bashrc

systems/ubuntu/Cloud/005_Kubernetes_Kind.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
sys_check /usr/local/bin/kind && exit 0
4+
5+
sudo curl -Lo /usr/local/bin/kind https://kind.sigs.k8s.io/dl/v0.11.1/kind-linux-amd64
6+
7+
sudo chmod +x /usr/local/bin/kind

systems/ubuntu/PHP/001_PHP.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
sudo apt-get install -y php8.2
3+
sudo apt-get install -y php8.1

0 commit comments

Comments
 (0)