fixed comma error, new fedora install script
This commit is contained in:
parent
c84d6c5d4c
commit
5f73bcb90d
|
@ -52,9 +52,9 @@ pub const CONFIG: CfgGroup<'static> = CfgGroup {
|
||||||
description: "Recipient of the emails sent.",
|
description: "Recipient of the emails sent.",
|
||||||
},
|
},
|
||||||
CfgField::Default {
|
CfgField::Default {
|
||||||
key: "in-reply-to"
|
key: "in-reply-to",
|
||||||
default: "intern@berlin.ccc.de"
|
default: "intern@berlin.ccc.de",
|
||||||
description: "Person to reply to"
|
description: "Person to reply to",
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
18
util/install_script_fedora.sh
Normal file
18
util/install_script_fedora.sh
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# The plenum bot works when being run on a ubuntu-server
|
||||||
|
# instance with these commands ran previously.
|
||||||
|
# For other distros, please adapt these instructions
|
||||||
|
# so you have the same packages installed as well.
|
||||||
|
#
|
||||||
|
# This script can also be run in order to update
|
||||||
|
# the bot and its dependencies to the newest version.
|
||||||
|
|
||||||
|
# Optionally, if you don't have rust installed, you should do it here:
|
||||||
|
# https://www.rust-lang.org/tools/install
|
||||||
|
|
||||||
|
git pull
|
||||||
|
sudo dnf update -y
|
||||||
|
sudo dnf install gcc rust-openssl-devel pandoc pkg-config rust-libsqlite3-sys+buildtime_bindgen-devel.noarch
|
||||||
|
cargo install --path $HOME/plenum-bot
|
||||||
|
./update_or_create_systemd_service.sh
|
Loading…
Reference in a new issue