diff options
author | binary <me@rgoncalves.se> | 2020-11-20 19:22:11 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2020-11-20 19:22:11 +0100 |
commit | 87b47b86c428705e7a67bdb97ea2ee75e5e12782 (patch) | |
tree | 0f0ae39dc15fd576de16994830dbf24f8ed25a88 /roles/update | |
parent | f836cf2ff1f0be3da60b882ed86eb7bb124a9f7f (diff) | |
download | infrastructure-87b47b86c428705e7a67bdb97ea2ee75e5e12782.tar.gz |
Remove update role and broke it in subroles.
Diffstat (limited to 'roles/update')
-rw-r--r-- | roles/update/files/installurl | 2 | ||||
-rw-r--r-- | roles/update/tasks/main.yml | 24 |
2 files changed, 0 insertions, 26 deletions
diff --git a/roles/update/files/installurl b/roles/update/files/installurl deleted file mode 100644 index 71117ea..0000000 --- a/roles/update/files/installurl +++ /dev/null @@ -1,2 +0,0 @@ -https://mirror.ungleich.ch/pub/OpenBSD - diff --git a/roles/update/tasks/main.yml b/roles/update/tasks/main.yml deleted file mode 100644 index 0680189..0000000 --- a/roles/update/tasks/main.yml +++ /dev/null @@ -1,24 +0,0 @@ - -# =========================================================================== # -# __ __ __ -# _________ / /__ __ ______ ____/ /___ _/ /____ -# / ___/ __ \/ / _ \ / / / / __ \/ __ / __ `/ __/ _ \ -# / / / /_/ / / __/ / /_/ / /_/ / /_/ / /_/ / /_/ __/ -# /_/ \____/_/\___(_) \__,_/ .___/\__,_/\__,_/\__/\___/ -# /_/ -# =========================================================================== # - ---- -- name: Copy default mirror for system type = {{ ansible_distribution }} - copy: - src: installurl - dest: /etc/installurl - owner: root - group: "{{ group_root }}" - when: inventory_hostname in groups["openbsd"] - -- name: Upgrading packages for system type = {{ ansible_distribution }} - package: - name: "*" - state: latest - |