diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-11-04 06:12:14 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-11-04 06:12:14 +0000 |
commit | 8fbf0baee6a6b82876d43cef4abc34d021252d25 (patch) | |
tree | 23103fd1ff0aae03ab20229a035573c1df16a5fa /src/backend/libvasile.sh | |
parent | 8d25c02e51386bb0f463349e85400df9e07d94a7 (diff) |
add Makefilev1.1710
Diffstat (limited to 'src/backend/libvasile.sh')
-rw-r--r-- | src/backend/libvasile.sh | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/src/backend/libvasile.sh b/src/backend/libvasile.sh deleted file mode 100644 index 506ee5e..0000000 --- a/src/backend/libvasile.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env bash - -if [[ -f /lib/gentoo/functions.sh ]] ; then - source /lib/gentoo/functions.sh -else - echo "Cannot import Gentoo functions, I will abort now!" - exit 1 -fi - -if [[ -f /usr/lib/vasile/variables_jail.sh ]] ; then - source /usr/lib/vasile/variables_jail.sh -else - echo "Cannot import jail variables, I will abort now!" - exit 1 -fi - -if [[ -f /usr/lib/vasile/commands_jail.sh ]] ; then - source /usr/lib/vasile/commands_jail.sh -else - echo "Cannot import jail commands, I will abort now!" - exit 1 -fi - -if [[ -f /usr/lib/vasile/functions_generic.sh ]] ; then - source /usr/lib/vasile/functions_generic.sh -else - echo "Cannot import generic functions, I will abort now!" - exit 1 -fi - -if [[ -f /usr/lib/vasile/functions_makepkg.sh ]] ; then - source /usr/lib/vasile/functions_makepkg.sh -else - echo "Cannot import makepkg functions, I will abort now!" - exit 1 -fi - -if [[ -f /usr/lib/vasile/functions_makeiso.sh ]] ; then - source /usr/lib/vasile/functions_makeiso.sh -else - echo "Cannot import makeiso functions, I will abort now!" - exit 1 -fi - -if [[ -f /usr/lib/vasile/functions_modeswitch.sh ]] ; then - source /usr/lib/vasile/functions_modeswitch.sh -else - echo "Cannot import modeswitch functions, I will abort now!" - exit 1 -fi |