Compare commits

..

No commits in common. "698950d346dc51ed5d2ec7dbdc0170e29279a27d" and "7dafc80dbe89c82c86e6f4482871aece32e409bb" have entirely different histories.

2 changed files with 6 additions and 8 deletions

View file

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

View file

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