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
112 B
Bash
Executable File
8 lines
112 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. config || exit 0
|
|
set -e
|
|
|
|
echo Backing up filesystem...
|
|
sudo rsync -a --delete ${FS} ${FS}.backup
|