16 lines
261 B
Bash
16 lines
261 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copy this file as variables.conf, with the correct values
|
|
|
|
# For both update and clear scripts:
|
|
repo_name=""
|
|
|
|
# For update script:
|
|
remote_repository=""
|
|
ssh_key=""
|
|
ssh_options="-i $ssh_key"
|
|
exlist=""
|
|
|
|
# For clear script:
|
|
repo_directory=""
|