add libesv

This commit is contained in:
lw-everestlinux
2022-10-25 14:02:50 -04:00
parent 43e009286a
commit 970cc8e411
4 changed files with 77 additions and 5 deletions

View File

@@ -27,6 +27,6 @@ INSTALL.sh as root
+-------------------+
- ecrypt-genkey
Create a randomized 64 character key
- ecrypt-checkkey
Check a file against an existing key

41
src/esv/lib/libesv Normal file
View File

@@ -0,0 +1,41 @@
#!/bin/sh
autostart() {
while true
do
/etc/init.d/autostart/*/RUN
done
}
case $1 in
autostart)
autostart
if [ "$?" != "0" ]; then
exit 1
fi
;;
-h|--help)
printf "libesv - backend functions for esv\n"
printf "note: this script should not be called directly by the user\n"
printf "\n"
printf "/usr/lib/libesv {autostart} - autostart all services in /etc/init.d/autostart\n"
printf "note: 'autostart' should ONLY be called by esv at boot time\n"
printf "\n"
printf "/usr/lib/libesv {-h|--help} - show this message and exit\n"
printf "/usr/lib/libesv {-v|--version} - show the version and exit\n"
printf "\n"
printf "this file is part of esv - everest service manager\n"
exit 0
;;
-v|--version)
printf "libesv v1.0.0\n"
exit 0
;;
-*)
printf "error in subprocess /usr/lib/libesv - no such option '$1'\n"
exit 1
;;
*)
printf "error in subprocess /usr/lib/libesv - no such option '$1'\n"
exit 1
esac