forked from openSUSE/snapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
16,776 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/bin/bash -xe | ||
|
||
make -f Makefile.repo | ||
make clean | ||
make check | ||
|
||
|
||
./configure --disable-btrfs --disable-btrfs-quota --disable-rollback | ||
make clean | ||
make check | ||
|
||
./configure --disable-btrfs --disable-btrfs-quota --disable-rollback --enable-selinux | ||
make clean | ||
make check | ||
|
||
./configure --disable-btrfs-quota --disable-rollback | ||
make clean | ||
make check | ||
|
||
./configure --disable-btrfs-quota --disable-rollback --enable-selinux | ||
make clean | ||
make check | ||
|
||
./configure --disable-btrfs-quota | ||
make clean | ||
make check | ||
|
||
./configure --disable-rollback | ||
make clean | ||
make check | ||
|
||
./configure --disable-zypp | ||
make clean | ||
make check | ||
|
||
|
||
./configure --disable-lvm | ||
make clean | ||
make check | ||
|
||
|
||
./configure --disable-ext4 | ||
make clean | ||
make check | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
HOST=192.168.1.91 | ||
|
||
rsync -v -ar --files-from=- / root@$HOST:/ <<EOF | ||
/usr/bin/snapper | ||
/usr/sbin/snapperd | ||
/usr/sbin/snbk | ||
/usr/lib64/libsnapper.so.7 | ||
/usr/lib64/libsnapper.so.7.4.3 | ||
/usr/lib/zypp/plugins/commit/snapper-zypp-plugin | ||
/usr/lib/systemd/system/snapper-boot.service | ||
/usr/lib/systemd/system/snapper-cleanup.service | ||
/usr/lib/systemd/system/snapper-timeline.service | ||
/usr/lib/systemd/system/snapper-backup.service | ||
/usr/lib/systemd/system/snapper-backup.timer | ||
/usr/lib/systemd/system/snapperd.service | ||
/usr/lib/snapper/systemd-helper | ||
EOF |
Oops, something went wrong.