forked from paukstelis/octoprint_deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.sh
executable file
·57 lines (51 loc) · 1.71 KB
/
plugins.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
install_plugin() {
echo "Installing $plugin...." | log
$OCTOPIP install "$plugin_path"
}
plugin_menu() {
echo
echo
PS3='Select recommended plugins to install: '
readarray -t plugins < <(cat $SCRIPTDIR/plugins_list | sed -n -e 's/^plugin:\(.*\) path:.*/\1/p')
plugins+=("All")
plugins+=("Quit")
select plugin in "${plugins[@]}"
do
if [ "$plugin" == Quit ]; then
break
fi
#some special thing to do if All Recommended
if [ "$plugin" == All ]; then
for plugin in "${plugins[@]}"; do
plugin_path=$(cat $SCRIPTDIR/plugins_list | sed -n -e "s/^plugin:$plugin path:\([[:graph:]]*\)/\1/p")
if [ -n "$plugin_path" ]; then
install_plugin $plugin $plugin_path
fi
done
break
fi
#install single plugin
#get plugin path
plugin_path=$(cat $SCRIPTDIR/plugins_list | sed -n -e "s/^plugin:$plugin path:\([[:graph:]]*\)/\1/p")
install_plugin
done
}
plugin_menu_cloud() {
echo
echo "You can setup cloud-based plugins at this time. Some will have to be configured"
echo "in your template instance before making new instances."
echo
PS3='Select cloud-based plugins to install: '
readarray -t plugins < <(cat $SCRIPTDIR/plugins_cloud | sed -n -e 's/^plugin:\(.*\) path:.*/\1/p')
plugins+=("Quit")
select plugin in "${plugins[@]}"
do
if [ "$plugin" == Quit ]; then
break
fi
plugin_path=$(cat $SCRIPTDIR/plugins_cloud | sed -n -e "s/^plugin:$plugin path:\([[:graph:]]*\)/\1/p")
install_plugin
break
done
}