Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

- updated pot and po files #957

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions configure-hell.sh
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

19 changes: 19 additions & 0 deletions copy.sh
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
Loading
Loading