Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav
eepm
Commits
0359b7b4
Commit
0359b7b4
authored
Apr 12, 2023
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit packed 3.50.1
parent
6d879977
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
23 deletions
+73
-23
epm.sh
packed/epm.sh
+72
-22
serv.sh
packed/serv.sh
+1
-1
No files found.
packed/epm.sh
View file @
0359b7b4
...
@@ -33,7 +33,7 @@ SHAREDIR=$PROGDIR
...
@@ -33,7 +33,7 @@ SHAREDIR=$PROGDIR
# will replaced with /etc/eepm during install
# will replaced with /etc/eepm during install
CONFIGDIR
=
$PROGDIR
/../etc
CONFIGDIR
=
$PROGDIR
/../etc
EPMVERSION
=
"3.50.
0
"
EPMVERSION
=
"3.50.
1
"
# package, single (file), pipe, git
# package, single (file), pipe, git
EPMMODE
=
"package"
EPMMODE
=
"package"
...
@@ -12509,6 +12509,7 @@ fatal()
...
@@ -12509,6 +12509,7 @@ fatal()
info
()
info
()
{
{
[
-n
"
$quiet
"
]
&&
return
echo
"
$*
"
>
&2
echo
"
$*
"
>
&2
}
}
...
@@ -12517,7 +12518,7 @@ eget()
...
@@ -12517,7 +12518,7 @@ eget()
if
[
-n
"
$PROGNAME
"
]
;
then
if
[
-n
"
$PROGNAME
"
]
;
then
local
bashopt
=
''
local
bashopt
=
''
[
-n
"
$verbose
"
]
&&
bashopt
=
'-x'
#
[ -n "$verbose" ] && bashopt='-x'
(
unset
EGET_IPFS_GATEWAY
;
unset
EGET_IPFS_API
;
unset
EGET_IPFS_DB
;
$CMDSHELL
$bashopt
$PROGDIR
/
$PROGNAME
"
$@
"
)
(
unset
EGET_IPFS_GATEWAY
;
unset
EGET_IPFS_API
;
unset
EGET_IPFS_DB
;
$CMDSHELL
$bashopt
$PROGDIR
/
$PROGNAME
"
$@
"
)
else
else
...
@@ -12610,6 +12611,12 @@ docmd()
...
@@ -12610,6 +12611,12 @@ docmd()
"
$@
"
"
$@
"
}
}
verdocmd
()
{
[
-n
"
$verbose
"
]
&&
showcmd
"
$@
"
"
$@
"
}
# copied from epm
# copied from epm
# print a path to the command if exists in $PATH
# print a path to the command if exists in $PATH
...
@@ -12692,7 +12699,10 @@ is_strange_url()
...
@@ -12692,7 +12699,10 @@ is_strange_url()
is_ipfs_hash
()
is_ipfs_hash
()
{
{
echo
"
$1
"
|
grep
-q
-E
"^Qm[[:alnum:]]{44}$"
# If a CID is 46 characters starting with "Qm", it's a CIDv0
echo
"
$1
"
|
grep
-q
-E
"^Qm[[:alnum:]]{44}$"
&&
return
# TODO: CIDv1 support, see https://github.com/multiformats/cid
return
1
}
}
is_ipfsurl
()
is_ipfsurl
()
...
@@ -12710,7 +12720,7 @@ is_httpurl()
...
@@ -12710,7 +12720,7 @@ is_httpurl()
cid_from_url
()
cid_from_url
()
{
{
echo
"
$1
"
|
sed
-e
's|^ipfs://*||'
echo
"
$1
"
|
sed
-e
's|^ipfs://*||'
-e
's|\?.*||'
}
}
...
@@ -12741,6 +12751,8 @@ download_with_mirroring()
...
@@ -12741,6 +12751,8 @@ download_with_mirroring()
check_tty
check_tty
quiet
=
''
verbose
=
''
WGETNOSSLCHECK
=
''
WGETNOSSLCHECK
=
''
CURLNOSSLCHECK
=
''
CURLNOSSLCHECK
=
''
WGETUSERAGENT
=
''
WGETUSERAGENT
=
''
...
@@ -12770,6 +12782,7 @@ set_quiet()
...
@@ -12770,6 +12782,7 @@ set_quiet()
{
{
WGETQ
=
'-q'
WGETQ
=
'-q'
CURLQ
=
'-s'
CURLQ
=
'-s'
quiet
=
1
}
}
...
@@ -12781,7 +12794,8 @@ eget - wget like downloader wrapper with wildcard support in filename part of UR
...
@@ -12781,7 +12794,8 @@ eget - wget like downloader wrapper with wildcard support in filename part of UR
Usage: eget [options] http://somesite.ru/dir/na*.log
Usage: eget [options] http://somesite.ru/dir/na*.log
Options:
Options:
-q - quiet mode
-q|--quiet - quiet mode
--verbose - verbose mode
-k|--no-check-certificate - skip SSL certificate chain support
-k|--no-check-certificate - skip SSL certificate chain support
-U|-A|--user-agent - send browser like UserAgent
-U|-A|--user-agent - send browser like UserAgent
-4|--ipv4|--inet4-only - use only IPV4
-4|--ipv4|--inet4-only - use only IPV4
...
@@ -12832,9 +12846,12 @@ while [ -n "$1" ] ; do
...
@@ -12832,9 +12846,12 @@ while [ -n "$1" ] ; do
eget_help
eget_help
return
return
;;
;;
-q
)
-q
|
--quiet
)
set_quiet
set_quiet
;;
;;
--verbose
)
verbose
=
"
$1
"
;;
-k
|
--no-check-certificate
)
-k
|
--no-check-certificate
)
WGETNOSSLCHECK
=
'--no-check-certificate'
WGETNOSSLCHECK
=
'--no-check-certificate'
CURLNOSSLCHECK
=
'-k'
CURLNOSSLCHECK
=
'-k'
...
@@ -12922,13 +12939,13 @@ get_ipfs_brave()
...
@@ -12922,13 +12939,13 @@ get_ipfs_brave()
ipfs_access
()
ipfs_access
()
{
{
[
-n
"
$IPFS_CMD
"
]
||
fatal
"IPFS is disabled"
[
-n
"
$IPFS_CMD
"
]
||
fatal
"IPFS is disabled"
$IPFS_CMD
--api
$IPFS_API
$ipfs_diag_timeout
diag sys
>
/dev/null 2
>/dev/null
verdocmd
$IPFS_CMD
--api
$IPFS_API
$ipfs_diag_timeout
diag sys
>
/dev/null
}
}
ipfs_check
()
ipfs_check
()
{
{
[
-n
"
$IPFS_CMD
"
]
||
fatal
"IPFS is disabled"
[
-n
"
$IPFS_CMD
"
]
||
fatal
"IPFS is disabled"
$IPFS_CMD
--api
$IPFS_API
$ipfs_diag_timeout
cat
"
$1
"
>
/dev/null
verdocmd
$IPFS_CMD
--api
$IPFS_API
$ipfs_diag_timeout
cat
"
$1
"
>
/dev/null
}
}
...
@@ -13002,7 +13019,7 @@ put_cid_and_url()
...
@@ -13002,7 +13019,7 @@ put_cid_and_url()
get_filename_by_cid
()
get_filename_by_cid
()
{
{
local
CID
=
"
$1
"
local
CID
=
"
$1
"
[
-z
"
$EGET_IPFS_DB
"
]
&&
echo
"
$CID
"
&&
return
[
-z
"
$EGET_IPFS_DB
"
]
&&
basename
"
$CID
"
&&
return
grep
-F
"
$CID
"
"
$EGET_IPFS_DB
"
|
head
-n1
|
cut
-f3
-d
" "
grep
-F
"
$CID
"
"
$EGET_IPFS_DB
"
|
head
-n1
|
cut
-f3
-d
" "
}
}
...
@@ -13040,10 +13057,11 @@ fi
...
@@ -13040,10 +13057,11 @@ fi
# detect if we run with ipfs:// or with auto
# detect if we run with ipfs:// or with auto
if
is_ipfsurl
"
$1
"
&&
[
-z
"
$ipfs_mode
"
]
||
[
"
$ipfs_mode
"
=
"auto"
]
;
then
if
is_ipfsurl
"
$1
"
&&
[
-z
"
$ipfs_mode
"
]
||
[
"
$ipfs_mode
"
=
"auto"
]
;
then
info
"Autodetecting for available IPFS relay..."
select_ipfs_mode
select_ipfs_mode
info
"Auto selected IPFS mode:
$ipfs_mode
"
info
"Auto selected IPFS mode:
$ipfs_mode
"
else
else
[
-n
"
$ipfs_mode
"
]
&&
info
"IPFS mode:
$ipfs_mode
"
[
-n
"
$ipfs_mode
"
]
&&
[
"
$ipfs_mode
"
!=
"disabled"
]
&&
info
"IPFS mode:
$ipfs_mode
"
fi
fi
IPFS_CMD
=
''
IPFS_CMD
=
''
...
@@ -13082,14 +13100,19 @@ elif [ "$ipfs_mode" = "local" ] ; then
...
@@ -13082,14 +13100,19 @@ elif [ "$ipfs_mode" = "local" ] ; then
elif
[
"
$ipfs_mode
"
=
"gateway"
]
;
then
elif
[
"
$ipfs_mode
"
=
"gateway"
]
;
then
info
"Will use eget
$IPFS_GATEWAY
/HASH"
info
"Will use eget
$IPFS_GATEWAY
/HASH"
ipfs_get
()
ipfs_get_real_url
()
{
{
[
-n
"
$IPFS_GATEWAY
"
]
||
fatal
"ipfs http gateway is not set"
[
-n
"
$IPFS_GATEWAY
"
]
||
fatal
"ipfs http gateway is not set"
# FIXME:
echo
"
$IPFS_GATEWAY
/
$1
"
}
ipfs_get
()
{
if
[
-n
"
$2
"
]
;
then
if
[
-n
"
$2
"
]
;
then
docmd eget
-O
"
$2
"
"
$
IPFS_GATEWAY
/
$1
"
docmd eget
-O
"
$2
"
"
$
(
ipfs_get_real_url
"
$1
"
)
"
else
else
docmd eget
"
$
IPFS_GATEWAY
/
$1
"
docmd eget
"
$
(
ipfs_get_real_url
"
$1
"
)
"
fi
fi
}
}
...
@@ -13111,6 +13134,11 @@ fi
...
@@ -13111,6 +13134,11 @@ fi
if
[
-n
"
$IPFS_CMD
"
]
;
then
if
[
-n
"
$IPFS_CMD
"
]
;
then
ipfs_get_real_url
()
{
return
1
}
ipfs_get
()
ipfs_get
()
{
{
[
-n
"
$IPFS_CMD
"
]
||
fatal
"ipfs api is not usable"
[
-n
"
$IPFS_CMD
"
]
||
fatal
"ipfs api is not usable"
...
@@ -13246,6 +13274,13 @@ url_sget()
...
@@ -13246,6 +13274,13 @@ url_sget()
ipfs_get
"
$(
cid_from_url
"
$URL
"
)
"
"
$2
"
ipfs_get
"
$(
cid_from_url
"
$URL
"
)
"
"
$2
"
return
return
fi
fi
local
fn
=
"
$(
url_print_filename_from_url
"
$URL
"
)
"
if
[
-n
"
$fn
"
]
;
then
ipfs_get
"
$(
cid_from_url
"
$URL
"
)
"
"
$fn
"
return
fi
ipfs_get
"
$(
cid_from_url
"
$URL
"
)
"
ipfs_get
"
$(
cid_from_url
"
$URL
"
)
"
}
}
...
@@ -13256,9 +13291,17 @@ url_check()
...
@@ -13256,9 +13291,17 @@ url_check()
scat
"
$URL
"
>
/dev/null
scat
"
$URL
"
>
/dev/null
}
}
url_print_filename_from_url
()
{
local
URL
=
"
$1
"
local
fn
=
"
$(
echo
"
$URL
"
|
sed
-e
's|ipfs://.*\?filename=||'
)
"
[
"
$URL
"
!=
"
$fn
"
]
&&
echo
"
$fn
"
&&
return
}
url_get_filename
()
url_get_filename
()
{
{
local
URL
=
"
$1
"
local
URL
=
"
$1
"
url_print_filename_from_url
"
$URL
"
&&
return
local
CID
=
"
$(
cid_from_url
"
$URL
"
)
"
local
CID
=
"
$(
cid_from_url
"
$URL
"
)
"
get_filename_by_cid
"
$CID
"
get_filename_by_cid
"
$CID
"
}
}
...
@@ -13267,6 +13310,8 @@ url_get_real_url()
...
@@ -13267,6 +13310,8 @@ url_get_real_url()
{
{
local
URL
=
"
$1
"
local
URL
=
"
$1
"
local
CID
=
"
$(
cid_from_url
"
$URL
"
)
"
local
CID
=
"
$(
cid_from_url
"
$URL
"
)
"
# if we use gateway, return URL with gateway
ipfs_get_real_url
"
$URL
"
&&
return
get_url_by_cid
"
$CID
"
get_url_by_cid
"
$CID
"
}
}
...
@@ -13309,10 +13354,10 @@ url_get_response()
...
@@ -13309,10 +13354,10 @@ url_get_response()
{
{
local
URL
=
"
$1
"
local
URL
=
"
$1
"
local
answer
local
answer
answer
=
"
$(
__wget
--spider
-S
"
$URL
"
2>&1
)
"
answer
=
"
$(
quiet
=
1
__wget
--spider
-S
"
$URL
"
2>&1
)
"
# HTTP/1.1 405 Method Not Allowed
# HTTP/1.1 405 Method Not Allowed
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 405"
;
then
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 405"
;
then
__wget
--start-pos
=
5000G
-S
"
$URL
"
2>&1
(
quiet
=
1 __wget
--start-pos
=
5000G
-S
"
$URL
"
2>&1
)
return
return
fi
fi
echo
"
$answer
"
echo
"
$answer
"
...
@@ -13355,10 +13400,10 @@ url_get_response()
...
@@ -13355,10 +13400,10 @@ url_get_response()
{
{
local
URL
=
"
$1
"
local
URL
=
"
$1
"
local
answer
local
answer
answer
=
"
$(
__curl
-LI
"
$URL
"
2>&1
)
"
answer
=
"
$(
quiet
=
1
__curl
-LI
"
$URL
"
2>&1
)
"
# HTTP/1.1 405 Method Not Allowed
# HTTP/1.1 405 Method Not Allowed
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 405"
;
then
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 405"
;
then
__curl
-L
-i
-r0-0
"
$URL
"
2>&1
(
quiet
=
1 __curl
-L
-i
-r0-0
"
$URL
"
2>&1
)
return
return
fi
fi
echo
"
$answer
"
echo
"
$answer
"
...
@@ -13380,7 +13425,7 @@ url_get_headers()
...
@@ -13380,7 +13425,7 @@ url_get_headers()
url_check
()
url_check
()
{
{
local
URL
=
"
$1
"
local
URL
=
"
$1
"
url_get_response |
grep
"HTTP/"
|
tail
-n1
|
grep
-q
-w
"200
\|
404"
url_get_response
"
$URL
"
|
grep
"HTTP/"
|
tail
-n1
|
grep
-q
-w
"200
\|
404"
}
}
url_get_header
()
url_get_header
()
...
@@ -13400,7 +13445,7 @@ url_get_real_url()
...
@@ -13400,7 +13445,7 @@ url_get_real_url()
[
-n
"
$MADEURL
"
]
&&
[
"
$MADEURL
"
=
"
$URL
"
]
&&
echo
"
$URL
"
&&
return
[
-n
"
$MADEURL
"
]
&&
[
"
$MADEURL
"
=
"
$URL
"
]
&&
echo
"
$URL
"
&&
return
local
loc
local
loc
for
loc
in
$(
url_get_header
"
$URL
"
"Location"
|
tac
)
;
do
for
loc
in
$(
url_get_header
"
$URL
"
"Location"
|
tac
|
sed
-e
's| ||'
)
;
do
if
!
is_strange_url
"
$loc
"
;
then
if
!
is_strange_url
"
$loc
"
;
then
echo
"
$loc
"
echo
"
$loc
"
return
return
...
@@ -13692,8 +13737,13 @@ get_urls()
...
@@ -13692,8 +13737,13 @@ get_urls()
if
[
-n
"
$CHECKURL
"
]
;
then
if
[
-n
"
$CHECKURL
"
]
;
then
#set_quiet
#set_quiet
check_url_is_accessible
"
$1
"
URL
=
"
$1
"
return
check_url_is_accessible
"
$URL
"
res
=
$?
if
[
-n
"
$verbose
"
]
;
then
[
"
$res
"
=
"0"
]
&&
echo
"
$URL
is accessible via network"
||
echo
"
$URL
is NOT accessible via network"
fi
return
$res
fi
fi
if
[
-n
"
$GETRESPONSE
"
]
;
then
if
[
-n
"
$GETRESPONSE
"
]
;
then
...
...
packed/serv.sh
View file @
0359b7b4
...
@@ -2564,7 +2564,7 @@ print_version()
...
@@ -2564,7 +2564,7 @@ print_version()
local
on_text
=
"(host system)"
local
on_text
=
"(host system)"
local
virt
=
"
$(
$DISTRVENDOR
-i
)
"
local
virt
=
"
$(
$DISTRVENDOR
-i
)
"
[
"
$virt
"
=
"(unknown)"
]
||
[
"
$virt
"
=
"(host system)"
]
||
on_text
=
"(under
$virt
)"
[
"
$virt
"
=
"(unknown)"
]
||
[
"
$virt
"
=
"(host system)"
]
||
on_text
=
"(under
$virt
)"
echo
"Service manager version 3.50.
0
https://wiki.etersoft.ru/Epm"
echo
"Service manager version 3.50.
1
https://wiki.etersoft.ru/Epm"
echo
"Running on
$(
$DISTRVENDOR
-e
)
$on_text
with
$SERVICETYPE
"
echo
"Running on
$(
$DISTRVENDOR
-e
)
$on_text
with
$SERVICETYPE
"
echo
"Copyright (c) Etersoft 2012-2021"
echo
"Copyright (c) Etersoft 2012-2021"
echo
"This program may be freely redistributed under the terms of the GNU AGPLv3."
echo
"This program may be freely redistributed under the terms of the GNU AGPLv3."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment