Update
This commit is contained in:
parent
62d4018b26
commit
b558472feb
5 changed files with 94 additions and 0 deletions
62
install_cluster_node.yaml
Normal file
62
install_cluster_node.yaml
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
---
|
||||||
|
- name: install cluster stuff
|
||||||
|
hosts: all
|
||||||
|
become: true
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: Install base system
|
||||||
|
include_tasks: yaml_sub/install_base_system.yaml
|
||||||
|
|
||||||
|
- 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 movie tools
|
||||||
|
# dnf:
|
||||||
|
# name: mencoder,mmv,mplayer,HandBrake
|
||||||
|
# state: present
|
||||||
|
# update_cache: true
|
||||||
|
# skip_broken: true
|
||||||
|
# nobest: false
|
||||||
|
# allowerasing: true
|
||||||
|
|
||||||
|
- name: make sure gdm is stopped
|
||||||
|
ansible.builtin.systemd_service:
|
||||||
|
name: gdm
|
||||||
|
state: stopped
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
- name: make sure lxdm is started
|
||||||
|
ansible.builtin.systemd_service:
|
||||||
|
name: lxdm
|
||||||
|
state: started
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
- name: set cluster crontab
|
||||||
|
include_tasks: yaml_sub/set_cluster_crontab.yaml
|
||||||
|
|
||||||
|
- 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 client
|
||||||
|
ansible.builtin.dnf:
|
||||||
|
name: "http://10.10.0.3/cmk/check_mk/agents/check-mk-agent-2.2.0p24-1.noarch.rpm"
|
||||||
|
state: present
|
||||||
|
update_cache: true
|
||||||
|
skip_broken: true
|
||||||
|
nobest: false
|
||||||
|
allowerasing: true
|
||||||
|
disable_gpg_check: true
|
||||||
|
|
||||||
|
- name: Change default target to graphical.target
|
||||||
|
file:
|
||||||
|
src: /usr/lib/systemd/system/multi-user.target
|
||||||
|
dest: /etc/systemd/system/default.target
|
||||||
|
state: link
|
||||||
|
|
||||||
|
- name: disable tracker
|
||||||
|
shell: 'for f in /etc/xdg/autostart/tracker*.desktop; do echo "Hidden=true" | tee -a "$f"; done'
|
|
@ -209,6 +209,13 @@
|
||||||
SEMAPHORE_LDAP_ACTIVATED: 'no'
|
SEMAPHORE_LDAP_ACTIVATED: 'no'
|
||||||
|
|
||||||
ANSIBLE_HOST_KEY_CHECKING: "False"
|
ANSIBLE_HOST_KEY_CHECKING: "False"
|
||||||
|
|
||||||
|
email_alert: "true"
|
||||||
|
email_host: "smtpd"
|
||||||
|
email_port: "25"
|
||||||
|
email_sender: "Ansible Neuro ITP"
|
||||||
|
email_secure: "False"
|
||||||
|
|
||||||
|
|
||||||
TZ: "Europe/Berlin"
|
TZ: "Europe/Berlin"
|
||||||
|
|
||||||
|
|
1
machines/udisoft
Normal file
1
machines/udisoft
Normal file
|
@ -0,0 +1 @@
|
||||||
|
udisoft.neuro.uni-bremen.de ansible_user=ansibleuser
|
9
set_cluster_crontab.yaml
Normal file
9
set_cluster_crontab.yaml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
---
|
||||||
|
- name: set cluster crontab
|
||||||
|
hosts: all
|
||||||
|
become: true
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: set cluster crontab
|
||||||
|
include_tasks: yaml_sub/set_cluster_crontab.yaml
|
||||||
|
|
15
yaml_sub/set_cluster_crontab.yaml
Normal file
15
yaml_sub/set_cluster_crontab.yaml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
- name: set new crontab
|
||||||
|
blockinfile:
|
||||||
|
path: /root/new_crontab.txt
|
||||||
|
state: present
|
||||||
|
create: true
|
||||||
|
owner: "root"
|
||||||
|
group: "root"
|
||||||
|
mode: "0644"
|
||||||
|
block: |
|
||||||
|
* * * * * sh /home/doomsdaydevice/doomsdaydevice.sh
|
||||||
|
*/5 * * * * sh /sge-root/sge_heatbeat.sh
|
||||||
|
|
||||||
|
- name: set crontab
|
||||||
|
shell: "crontab /root/new_crontab.txt"
|
Loading…
Reference in a new issue