[Done] updated format for `machine.secret` -> current:ttl:next
This commit is contained in:
parent
60322fc461
commit
a975f6c85b
12
clone/clone
12
clone/clone
|
@ -329,12 +329,12 @@ step9(){
|
||||||
|
|
||||||
# (2) Create default configuration files #
|
# (2) Create default configuration files #
|
||||||
echo " (.) Create default configuration/log files";
|
echo " (.) Create default configuration/log files";
|
||||||
echo $MACHINE_STATE | sudo tee /mnt/home/sats/satsd/conf/machine.state > /dev/null;
|
echo $MACHINE_STATE | sudo tee /mnt/home/sats/satsd/conf/machine.state > /dev/null;
|
||||||
echo $API_URL | sudo tee /mnt/home/sats/satsd/conf/api.url > /dev/null;
|
echo $API_URL | sudo tee /mnt/home/sats/satsd/conf/api.url > /dev/null;
|
||||||
echo $MACHINE_BRANCH | sudo tee /mnt/home/sats/satsd/conf/machine.branch > /dev/null;
|
echo $MACHINE_BRANCH | sudo tee /mnt/home/sats/satsd/conf/machine.branch > /dev/null;
|
||||||
echo $MACHINE_ID | sudo tee /mnt/home/sats/satsd/conf/machine.id > /dev/null;
|
echo $MACHINE_ID | sudo tee /mnt/home/sats/satsd/conf/machine.id > /dev/null;
|
||||||
echo "" | sudo tee /mnt/home/sats/satsd/conf/auth.list > /dev/null;
|
echo "" | sudo tee /mnt/home/sats/satsd/conf/auth.list > /dev/null;
|
||||||
echo "$MACHINE_SECRET:500" | sudo tee /mnt/home/sats/satsd/conf/machine.secret > /dev/null;
|
echo "$MACHINE_SECRET:500:$NEXT_SECRET" | sudo tee /mnt/home/sats/satsd/conf/machine.secret > /dev/null;
|
||||||
|
|
||||||
|
|
||||||
# (3) Set up SATS botting script #
|
# (3) Set up SATS botting script #
|
||||||
|
|
|
@ -18,3 +18,4 @@ export MACHINE_BRANCH="1.0";
|
||||||
export MACHINE_STATE="STOP";
|
export MACHINE_STATE="STOP";
|
||||||
export API_URL="http://192.168.0.43/logauth/api/machineDefault/sync/";
|
export API_URL="http://192.168.0.43/logauth/api/machineDefault/sync/";
|
||||||
export MACHINE_SECRET=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 250);
|
export MACHINE_SECRET=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 250);
|
||||||
|
export NEXT _SECRET=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 250);
|
||||||
|
|
Loading…
Reference in New Issue