diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-05 15:10:31 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-06 12:15:24 +0200 |
commit | af08db027b6214306683c8cbf9980798c5f85977 (patch) | |
tree | 97211afd7b11bace6ce508984d110ddf10dc41f2 /addonsu/51-addonsu.sh | |
parent | dc5051ce0272ddb572aaa72ecd0e1d00ad9b0f83 (diff) | |
download | external_wget-replicant-11.tar.gz external_wget-replicant-11.tar.bz2 external_wget-replicant-11.zip |
This way:
- We can rebase more easily if needed
- We don't have to bring in the other part of vendor/lineage that
is potentially incompatible with what we have
wget was also moved in the top directory along the way.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'addonsu/51-addonsu.sh')
-rw-r--r-- | addonsu/51-addonsu.sh | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/addonsu/51-addonsu.sh b/addonsu/51-addonsu.sh deleted file mode 100644 index f2d200b9..00000000 --- a/addonsu/51-addonsu.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/sbin/sh -# -# ADDOND_VERSION=2 -# - -. /tmp/backuptool.functions - -list_files() { -cat <<EOF -bin/su -etc/init/superuser.rc -xbin/su -EOF -} - -case "$1" in - backup) - list_files | while read FILE DUMMY; do - backup_file $S/"$FILE" - done - ;; - restore) - list_files | while read FILE REPLACEMENT; do - R="" - [ -n "$REPLACEMENT" ] && R="$S/$REPLACEMENT" - restore_file $S/"$FILE" "$R" - done - ;; - pre-backup) - # Stub - ;; - post-backup) - # Stub - ;; - pre-restore) - # Stub - ;; - post-restore) - # Stub - ;; -esac |