c258a0fedd
This PR groups misc cleanup and changes from https://github.com/ooni/probe-cli/pull/331. * CLI/linux/build: add documentation * debian/.gitignore: ignore generated files * debian/TODO: unnecessary at this point * debian/ooniprobe-cli.service: remove commented out lines * debian/rules: remove unnecessary actions * make: reindent and fix spelling * smoketest.sh: don't run in verbose mode Part of https://github.com/ooni/probe/issues/1466
10 lines
269 B
Bash
Executable File
10 lines
269 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
if [ "$#" != 1 ]; then
|
|
echo "Usage: $0 <binary>" 1>&2
|
|
exit 1
|
|
fi
|
|
$1 onboard --yes
|
|
# Important! DO NOT run performance from CI b/c it will overload m-lab servers
|
|
$1 run websites --config cmd/ooniprobe/testdata/testing-config.json --no-collector
|