This commit is contained in:
David Rotermund 2024-04-20 02:23:17 +02:00
parent 3ebf9d1d81
commit 7940c31b95
6 changed files with 343 additions and 255 deletions

View file

@ -4,7 +4,6 @@
become: true become: true
tasks: tasks:
- name: block shutdown - name: block shutdown
blockinfile: blockinfile:
path: /etc/polkit-1/rules.d/55-inhibit-shutdown.rules path: /etc/polkit-1/rules.d/55-inhibit-shutdown.rules
@ -23,8 +22,8 @@
- name: Make sure systemd-oomd service unit is stopped - name: Make sure systemd-oomd service unit is stopped
systemd_service: systemd_service:
state: stopped state: stopped
name: systemd-oomd name: systemd-oomd
- name: remove other files - name: remove other files
include_tasks: ../yaml_sub/myrepo_clean.yaml include_tasks: ../yaml_sub/myrepo_clean.yaml
@ -42,8 +41,8 @@
- name: Make sure systemd-oomd service unit is started - name: Make sure systemd-oomd service unit is started
systemd_service: systemd_service:
state: started state: started
name: systemd-oomd name: systemd-oomd
- name: stop shutdown embargo - name: stop shutdown embargo
ansible.builtin.file: ansible.builtin.file:

View file

@ -4,12 +4,34 @@
become: true become: true
tasks: tasks:
- name: block shutdown
blockinfile:
path: /etc/polkit-1/rules.d/55-inhibit-shutdown.rules
state: present
create: true
owner: "root"
group: "root"
mode: "0666"
block: |
polkit.addRule(function(action, subject) {
if (action.id.indexOf("org.freedesktop.login1.power-off") == 0 ||
action.id.indexOf("org.freedesktop.login1.reboot") == 0) {
return polkit.Result.AUTH_ADMIN;
}
});
- name: Make sure systemd-oomd service unit is stopped
systemd_service:
state: stopped
name: systemd-oomd
- name: Install base system - name: Install base system
include_tasks: yaml_sub/install_base_system.yaml include_tasks: yaml_sub/install_base_system.yaml
- name: remove other files - name: remove other files
include_tasks: yaml_sub/myrepo_clean.yaml include_tasks: yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo - name: update file myrepo.repo
import_tasks: yaml_sub/myrepo_data.yaml import_tasks: yaml_sub/myrepo_data.yaml
- name: install movie tools - name: install movie tools
@ -41,3 +63,13 @@
- name: disable tracker - name: disable tracker
shell: 'for f in /etc/xdg/autostart/tracker*.desktop; do echo "Hidden=true" | tee -a "$f"; done' shell: 'for f in /etc/xdg/autostart/tracker*.desktop; do echo "Hidden=true" | tee -a "$f"; done'
- name: Make sure systemd-oomd service unit is started
systemd_service:
state: started
name: systemd-oomd
- name: stop shutdown embargo
ansible.builtin.file:
path: /etc/polkit-1/rules.d/55-inhibit-shutdown.rules
state: "absent"

View file

@ -0,0 +1,56 @@
---
- name: upgrade to next version
hosts: all
become: true
tasks:
- name: block shutdown
blockinfile:
path: /etc/polkit-1/rules.d/55-inhibit-shutdown.rules
state: present
create: true
owner: "root"
group: "root"
mode: "0666"
block: |
polkit.addRule(function(action, subject) {
if (action.id.indexOf("org.freedesktop.login1.power-off") == 0 ||
action.id.indexOf("org.freedesktop.login1.reboot") == 0) {
return polkit.Result.AUTH_ADMIN;
}
});
- name: Make sure systemd-oomd service unit is stopped
systemd_service:
state: stopped
name: systemd-oomd
- name: remove other files
include_tasks: ../yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo
import_tasks: ../yaml_sub/myrepo_data.yaml
- name: install system-upgrade
dnf:
name: "dnf-command(system-upgrade)"
state: present
update_cache: true
skip_broken: true
nobest: false
allowerasing: true
- name: upgrade version
shell: "dnf -y system-upgrade download --refresh --releasever={{version}} --allowerasing --best --skip-broken; dnf system-upgrade reboot"
- name: Make sure systemd-oomd service unit is started
systemd_service:
state: started
name: systemd-oomd
- name: stop shutdown embargo
ansible.builtin.file:
path: /etc/polkit-1/rules.d/55-inhibit-shutdown.rules
state: "absent"

1
update_jobs/yaml_sub Symbolic link
View file

@ -0,0 +1 @@
../yaml_sub

View file

@ -1,251 +1,252 @@
--- ---
- name: remove other files - name: remove other files
include_tasks: yaml_sub/myrepo_clean.yaml include_tasks: yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo - name: update file myrepo.repo
import_tasks: yaml_sub/myrepo_data.yaml import_tasks: yaml_sub/myrepo_data.yaml
- name: update system (base) - name: update system (base)
dnf: dnf:
name: "*" name: "*"
state: latest state: latest
update_cache: true update_cache: true
skip_broken: true skip_broken: true
nobest: false nobest: false
allowerasing: true allowerasing: true
- name: remove other files - name: remove other files
include_tasks: yaml_sub/myrepo_clean.yaml include_tasks: yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo - name: update file myrepo.repo
import_tasks: yaml_sub/myrepo_data.yaml import_tasks: yaml_sub/myrepo_data.yaml
- name: Load group list - name: Load group list
include_vars: include_vars:
file: yaml_sub/groups_39.yaml file: yaml_sub/groups_39.yaml
- name: Install groups - name: Install groups
dnf: dnf:
name: "{{ groupnames }}" name: "{{ groupnames }}"
disablerepo: RPMFusionNonFreeUpdate,RPMFusionFreeUpdate,RPMFusionFreeEverything,RPMFusionNonFreeEverything disablerepo: RPMFusionNonFreeUpdate,RPMFusionFreeUpdate,RPMFusionFreeEverything,RPMFusionNonFreeEverything
update_cache: true update_cache: true
state: present state: present
skip_broken: true skip_broken: true
nobest: false nobest: false
allowerasing: true allowerasing: true
exclude: ghdl,sddm-x11 exclude: ghdl,sddm-x11
- name: remove other files - name: remove other files
include_tasks: yaml_sub/myrepo_clean.yaml include_tasks: yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo - name: update file myrepo.repo
import_tasks: yaml_sub/myrepo_data.yaml import_tasks: yaml_sub/myrepo_data.yaml
- name: Load package 1 list - name: Load package 1 list
include_vars: include_vars:
file: yaml_sub/packages_1.yaml file: yaml_sub/packages_1.yaml
- name: Install package 1 - name: Install package 1
dnf: dnf:
name: "{{ package1names }}" name: "{{ package1names }}"
disablerepo: RPMFusionNonFreeUpdate,RPMFusionFreeUpdate,RPMFusionFreeEverything,RPMFusionNonFreeEverything disablerepo: RPMFusionNonFreeUpdate,RPMFusionFreeUpdate,RPMFusionFreeEverything,RPMFusionNonFreeEverything
update_cache: true update_cache: true
state: present state: present
skip_broken: true skip_broken: true
nobest: false nobest: false
allowerasing: true allowerasing: true
- name: remove other files - name: remove other files
include_tasks: yaml_sub/myrepo_clean.yaml include_tasks: yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo - name: update file myrepo.repo
import_tasks: yaml_sub/myrepo_data.yaml import_tasks: yaml_sub/myrepo_data.yaml
- name: Load package 2 list - name: Load package 2 list
include_vars: include_vars:
file: yaml_sub/packages_2.yaml file: yaml_sub/packages_2.yaml
- name: Install package 2 - name: Install package 2
dnf: dnf:
name: "{{ package2names }}" name: "{{ package2names }}"
disablerepo: RPMFusionNonFreeUpdate,RPMFusionFreeUpdate,RPMFusionFreeEverything,RPMFusionNonFreeEverything disablerepo: RPMFusionNonFreeUpdate,RPMFusionFreeUpdate,RPMFusionFreeEverything,RPMFusionNonFreeEverything
update_cache: true update_cache: true
state: present state: present
skip_broken: true skip_broken: true
nobest: false nobest: false
allowerasing: true allowerasing: true
- name: remove other files - name: remove other files
include_tasks: yaml_sub/myrepo_clean.yaml include_tasks: yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo - name: update file myrepo.repo
import_tasks: yaml_sub/myrepo_data.yaml import_tasks: yaml_sub/myrepo_data.yaml
- name: Load package 3 list - name: Load package 3 list
include_vars: include_vars:
file: yaml_sub/packages_3.yaml file: yaml_sub/packages_3.yaml
- name: Install package 3 - name: Install package 3
dnf: dnf:
name: "{{ package3names }}" name: "{{ package3names }}"
disablerepo: RPMFusionNonFreeUpdate,RPMFusionFreeUpdate,RPMFusionFreeEverything,RPMFusionNonFreeEverything disablerepo: RPMFusionNonFreeUpdate,RPMFusionFreeUpdate,RPMFusionFreeEverything,RPMFusionNonFreeEverything
update_cache: true update_cache: true
state: present state: present
skip_broken: true skip_broken: true
nobest: false nobest: false
allowerasing: true allowerasing: true
- name: remove other files - name: remove other files
include_tasks: yaml_sub/myrepo_clean.yaml include_tasks: yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo - name: update file myrepo.repo
import_tasks: yaml_sub/myrepo_data.yaml import_tasks: yaml_sub/myrepo_data.yaml
- name: Install cuda - name: Install cuda
dnf: dnf:
name: cuda name: cuda
enablerepo: "*" enablerepo: "*"
update_cache: true update_cache: true
state: present state: present
skip_broken: true skip_broken: true
nobest: false nobest: false
allowerasing: true allowerasing: true
- name: remove other files - name: remove other files
include_tasks: yaml_sub/myrepo_clean.yaml include_tasks: yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo - name: update file myrepo.repo
import_tasks: yaml_sub/myrepo_data.yaml import_tasks: yaml_sub/myrepo_data.yaml
- name: Make sure firewall service unit is diabled - name: Make sure firewall service unit is diabled
systemd_service: systemd_service:
state: stopped state: stopped
enabled: false enabled: false
masked: true masked: true
name: firewalld name: firewalld
ignore_errors: true ignore_errors: true
- name: mount_info - name: mount_info
include_tasks: yaml_sub/mount_info.yaml include_tasks: yaml_sub/mount_info.yaml
- name: remove other files - name: remove other files
include_tasks: yaml_sub/myrepo_clean.yaml include_tasks: yaml_sub/myrepo_clean.yaml
- name: update file myrepo.repo - name: update file myrepo.repo
import_tasks: yaml_sub/myrepo_data.yaml import_tasks: yaml_sub/myrepo_data.yaml
- name: ssh - name: ssh
dnf: dnf:
name: "openssh,openssh-clients,openssh-server" name: "openssh,openssh-clients,openssh-server"
state: present state: present
update_cache: true update_cache: true
skip_broken: true skip_broken: true
nobest: false nobest: false
allowerasing: true allowerasing: true
- name: Set SELinux to disabled - name: Set SELinux to disabled
lineinfile: lineinfile:
path: /etc/selinux/config path: /etc/selinux/config
regexp: '^SELINUX=' regexp: "^SELINUX="
line: SELINUX=disabled line: SELINUX=disabled
create: true create: true
- name: Set SSHd Config (TCPKeepAlive) - name: Set SSHd Config (TCPKeepAlive)
lineinfile: lineinfile:
path: /etc/ssh/sshd_config path: /etc/ssh/sshd_config
state: present state: present
line: "TCPKeepAlive yes" line: "TCPKeepAlive yes"
create: true create: true
- name: Set SSHd Config (ClientAliveInterval)
lineinfile:
path: /etc/ssh/sshd_config
state: present
line: "ClientAliveInterval 30"
- name: Set SSHd Config (ClientAliveCountMax)
lineinfile:
path: /etc/ssh/sshd_config
state: present
line: "ClientAliveCountMax 500"
- name: Set Services (sge_qmaster) - name: Set SSHd Config (ClientAliveInterval)
lineinfile: lineinfile:
path: /etc/services path: /etc/ssh/sshd_config
state: present state: present
line: "sge_qmaster 6444/tcp" line: "ClientAliveInterval 30"
create: true
- name: Set Services (sge_execd) - name: Set SSHd Config (ClientAliveCountMax)
lineinfile: lineinfile:
path: /etc/services path: /etc/ssh/sshd_config
state: present state: present
line: "sge_execd 6445/tcp" line: "ClientAliveCountMax 500"
- name: Set Services (nrpe) - name: Set Services (sge_qmaster)
lineinfile: lineinfile:
path: /etc/services path: /etc/services
state: present state: present
line: "nrpe 5666/tcp # NRPE" line: "sge_qmaster 6444/tcp"
create: true
- name: Set Cups - name: Set Services (sge_execd)
lineinfile: lineinfile:
path: /etc/cups/client.conf path: /etc/services
state: present state: present
line: "ServerName 10.10.10.16" line: "sge_execd 6445/tcp"
create: true
- name: ldap - name: Set Services (nrpe)
include_tasks: yaml_sub/ldap.yaml lineinfile:
path: /etc/services
state: present
line: "nrpe 5666/tcp # NRPE"
- name: sssd - name: Set Cups
include_tasks: yaml_sub/sssd.yaml lineinfile:
path: /etc/cups/client.conf
state: present
line: "ServerName 10.10.0.8"
create: true
- name: set time zone - name: ldap
timezone: include_tasks: yaml_sub/ldap.yaml
name: Europe/Berlin
- name: enable ping - name: sssd
shell: "setcap cap_net_raw+p /bin/ping" include_tasks: yaml_sub/sssd.yaml
- name: procmail - name: set time zone
dnf: timezone:
name: "procmail" name: Europe/Berlin
state: present
update_cache: true
skip_broken: true
nobest: false
allowerasing: true
- name: esmtprc - name: enable ping
blockinfile: shell: "setcap cap_net_raw+p /bin/ping"
path: /etc/esmtprc
state: present
create: true
block: |
hostname = 134.102.55.235:25
mda "/usr/bin/procmail -d %T"
- name: Link for chrome - name: procmail
file: dnf:
src: /opt/google/chrome/chrome name: "procmail"
dest: /bin/chrome state: present
state: link update_cache: true
skip_broken: true
nobest: false
allowerasing: true
- name: set /etc/profile - name: esmtprc
blockinfile: blockinfile:
path: /etc/profile.d/sge.sh path: /etc/esmtprc
state: present state: present
create: true create: true
owner: "root" block: |
group: "root" hostname = 134.102.55.235:25
mode: "0666" mda "/usr/bin/procmail -d %T"
block: |
SGE_ROOT=/sge-root
export SGE_ROOT
SGE_ARCH=`/opt/sge/util/arch` - name: Link for chrome
export SGE_ARCH file:
DRMAA_LIBRARY_PATH=/opt/sge/lib/lx-amd64/libdrmaa.so src: /opt/google/chrome/chrome
dest: /bin/chrome
state: link
SGE_CELL=neuro - name: set /etc/profile
export SGE_CELL blockinfile:
SGE_CLUSTER_NAME=Neuro path: /etc/profile.d/sge.sh
export SGE_CLUSTER_NAME state: present
create: true
owner: "root"
group: "root"
mode: "0666"
block: |
SGE_ROOT=/sge-root
export SGE_ROOT
unset SGE_QMASTER_PORT SGE_ARCH=`/opt/sge/util/arch`
unset SGE_EXECD_PORT export SGE_ARCH
DRMAA_LIBRARY_PATH=/opt/sge/lib/lx-amd64/libdrmaa.so
MANPATH=/opt/sge/man:$MANPATH SGE_CELL=neuro
export MANPATH export SGE_CELL
PATH=/opt/sge/bin:/opt/sge/bin/lx-amd64/:$PATH SGE_CLUSTER_NAME=Neuro
export PATH export SGE_CLUSTER_NAME
shlib_path_name=/opt/sge/lib/lx-amd64/:$LD_LIBRARY_PATH
export shlib_path_name
unset SGE_QMASTER_PORT
unset SGE_EXECD_PORT
MANPATH=/opt/sge/man:$MANPATH
export MANPATH
PATH=/opt/sge/bin:/opt/sge/bin/lx-amd64/:$PATH
export PATH
shlib_path_name=/opt/sge/lib/lx-amd64/:$LD_LIBRARY_PATH
export shlib_path_name

View file

@ -50,11 +50,11 @@
enabled=1 enabled=1
gpgcheck=0 gpgcheck=0
[oneAPI] # [oneAPI]
name=oneAPI # name=oneAPI
baseurl=http://10.10.0.11/repos/Fedora/AllVersion/oneAPI # baseurl=http://10.10.0.11/repos/Fedora/AllVersion/oneAPI
enabled=1 # enabled=1
gpgcheck=0 # gpgcheck=0
[Opera] [Opera]
name=Opera name=Opera
@ -88,7 +88,7 @@
[SGE] [SGE]
name=SGE name=SGE
baseurl=http://10.10.0.11/repos/Fedora/32/sge/copr-be.cloud.fedoraproject.org/results/loveshack/SGE/fedora-32-x86_64 baseurl=http://10.10.0.11/repos/Fedora/37/sge/copr-be.cloud.fedoraproject.org/results/loveshack/SGE/fedora-37-x86_64
enabled=1 enabled=1
gpgcheck=0 gpgcheck=0
@ -115,4 +115,3 @@
baseurl=http://10.10.0.11/repos/Fedora/$releasever/docker baseurl=http://10.10.0.11/repos/Fedora/$releasever/docker
enabled=0 enabled=0
gpgcheck=0 gpgcheck=0