Compare commits

...

2 commits

Author SHA1 Message Date
698950d346 fix user prompt? 2024-09-18 23:10:28 +02:00
a3ab71aa36 add unclutter to ansible 2024-09-18 22:59:26 +02:00
2 changed files with 8 additions and 6 deletions

View file

@ -16,10 +16,9 @@ logger.debug("Browser started, opening the page");
const page = await browser
.pages()
.then((pages) => pages[0] || browser.newPage());
await page.goto("https://meet.freifunk-aachen.de");
logger.debug("Joining room");
await page.locator("#enter_room_field").fill("parsifalove");
await page.locator("#enter_room_button").click();
await page.goto("https://meet.freifunk-aachen.de/parsifalove");
logger.debug("Joining meeting");
await page.click('[aria-label="Join meeting"]');
logger.trace("Waiting for the room to load");
await page.waitForSelector("body");

View file

@ -33,11 +33,14 @@
global: yes
state: present
- name: Update apt cache and install Git
- name: Update apt cache and install Git, unclutter
apt:
name: git
name: "{{ item }}"
state: present
update_cache: yes
loop:
- git
- unclutter
- name: Clone Git repository
become: yes