mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00

GOOPS is Guile Object Oriented Programming System. It's easier to extend and break less the scenarios using GOOPS. e.g., a scenario published on Gitlab should work two weeks later. This is not the case right now and the goal of using GOOPS is to offer a stable API for the agent, while keeping it flexible. Change-Id: If6a038b6d8c371f8e74849749770f1dec8559b91
15 lines
258 B
Bash
Executable File
15 lines
258 B
Bash
Executable File
#!/bin/sh
|
|
|
|
tmp=$(mktemp --tmpdir --directory "jami-peer-monitor.XXXXXXXXXX")
|
|
|
|
export XDG_CONFIG_HOME="$tmp"
|
|
export XDG_CACHE_HOME="$tmp"
|
|
export XDG_DATA_HOME="$tmp"
|
|
export GUILE_AUTO_COMPILE=0
|
|
export JAMI_LOG_FILE="$1.log"
|
|
|
|
./scenario.scm $@
|
|
|
|
rm -rf "$tmp"
|
|
|