simple unset

This commit is contained in:
paukstelis
2022-10-24 09:20:34 -04:00
parent 9ee613d4fe
commit d00a0e8fea

View File

@@ -371,7 +371,7 @@ add_camera() {
PS3='Select instance number to add camera to: ' PS3='Select instance number to add camera to: '
readarray -t options < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) .*/\1/p') readarray -t options < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) .*/\1/p')
options+=("Quit") options+=("Quit")
instance_Filter options unset 'options[0]'
#Not yet check to see if instance already has a camera #Not yet check to see if instance already has a camera
select camopt in "${options[@]}" select camopt in "${options[@]}"
do do
@@ -494,7 +494,7 @@ remove_instance() {
PS3='Select instance number to remove: ' PS3='Select instance number to remove: '
readarray -t options < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) port:.*/\1/p') readarray -t options < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) port:.*/\1/p')
options+=("Quit") options+=("Quit")
instance_filter options unset 'options[0]'
select opt in "${options[@]}" select opt in "${options[@]}"
do do
if [ "$opt" == Quit ] || [ "$opt" == generic ]; then if [ "$opt" == Quit ] || [ "$opt" == generic ]; then
@@ -1008,7 +1008,7 @@ create_menu() {
restart_all() { restart_all() {
get_settings get_settings
readarray -t instances < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) .*/\1/p') readarray -t instances < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) .*/\1/p')
instance_filter instances unset 'instances[0]'
for instance in "${instances[@]}"; do for instance in "${instances[@]}"; do
if [ "$instance" == generic ]; then if [ "$instance" == generic ]; then
continue continue
@@ -1094,7 +1094,7 @@ restore() {
back_up_all() { back_up_all() {
get_settings get_settings
readarray -t instances < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) .*/\1/p') readarray -t instances < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) .*/\1/p')
instance_filter instances unset 'instances[0]'
for instance in "${instances[@]}"; do for instance in "${instances[@]}"; do
if [ "$instance" == generic ]; then if [ "$instance" == generic ]; then
continue continue
@@ -1112,7 +1112,7 @@ replace_id() {
PS3='Select instance to change serial ID: ' PS3='Select instance to change serial ID: '
readarray -t options < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) .*/\1/p') readarray -t options < <(cat /etc/octoprint_instances | sed -n -e 's/^instance:\([[:graph:]]*\) .*/\1/p')
options+=("Quit") options+=("Quit")
instance_filter options unset 'options[0]'
select opt in "${options[@]}" select opt in "${options[@]}"
do do
if [ "$opt" == Quit ] || [ "$opt" == generic ]; then if [ "$opt" == Quit ] || [ "$opt" == generic ]; then
@@ -1141,12 +1141,6 @@ octo_deploy_update() {
exit exit
} }
instance_filter() {
local input_array=$1
unset 'input_array[0]'
eval $input_array
}
main_menu() { main_menu() {
VERSION=0.1.6 VERSION=0.1.6
#reset #reset