Jim Paris
26215d6ac8
This lets you save the state of things to more quickly test other changes (for example, run customize-inner, then backup, then run the standalone_install scripts)
8 lines
111 B
Bash
Executable File
8 lines
111 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. config || exit 0
|
|
set -e
|
|
|
|
echo Restoring filesystem...
|
|
sudo rsync -a --delete ${FS}.backup ${FS}
|