aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ansible/update_adjutor.yml12
-rw-r--r--ansible/update_nginx.yml25
-rwxr-xr-xbin/update-scripts-repo.sh3
3 files changed, 1 insertions, 39 deletions
diff --git a/ansible/update_adjutor.yml b/ansible/update_adjutor.yml
deleted file mode 100644
index 2724a30..0000000
--- a/ansible/update_adjutor.yml
+++ /dev/null
@@ -1,12 +0,0 @@
----
-- name: Update the server
- hosts: vps
- become: true
- tasks:
-
- - name: Update and upgrade apt packages
- ansible.builtin.apt:
- update_cache: true
- upgrade: true
- autoremove: true
-...
diff --git a/ansible/update_nginx.yml b/ansible/update_nginx.yml
deleted file mode 100644
index 4813e6c..0000000
--- a/ansible/update_nginx.yml
+++ /dev/null
@@ -1,25 +0,0 @@
----
-- name: Update nginx if needed
- hosts: vps
- become: true
- become_user: root
- tasks:
-
- - name: Ensure nginx is at the latest version
- ansible.builtin.package:
- name: nginx
- state: latest
- notify: restart nginx
-
- - name: Ensure nginx is running
- ansible.builtin.service:
- name: nginx
- state: started
- enabled: true
-
- handlers:
- - name: Restart nginx
- ansible.builtin.service:
- name: nginx
- state: restarted
-...
diff --git a/bin/update-scripts-repo.sh b/bin/update-scripts-repo.sh
index be782ab..22e0807 100755
--- a/bin/update-scripts-repo.sh
+++ b/bin/update-scripts-repo.sh
@@ -7,9 +7,8 @@ pushd "$SCRIPTS_REPO_PATH" || exit 1
cp -rv "$HOME/.local/usr/local/bin" .
cp -rv "$HOME/workbench/auto-void-packages" .
-cp -rv "$HOME/workbench/ansible" .
git status | less
-git add . && git commit -v && git push -v --progress
+git add --patch . && git commit -v && git push -v --progress
popd || exit 1