diff options
Diffstat (limited to 'src/minutils/s6-pivotchroot.c')
-rw-r--r-- | src/minutils/s6-pivotchroot.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/minutils/s6-pivotchroot.c b/src/minutils/s6-pivotchroot.c deleted file mode 100644 index b35a00b..0000000 --- a/src/minutils/s6-pivotchroot.c +++ /dev/null @@ -1,21 +0,0 @@ -/* ISC license. */ - -#include <skalibs/nonposix.h> -#include <unistd.h> - -#include <skalibs/strerr.h> -#include <skalibs/exec.h> - -#define USAGE "s6-pivotchroot old-place-for-new-root new-place-for-old-root prog..." - -extern int pivot_root (char const *, char const *) ; - -int main (int argc, char const *const *argv) -{ - PROG = "s6-pivotchroot" ; - if (argc < 4) strerr_dieusage(100, USAGE) ; - if (chdir(argv[1]) < 0) strerr_diefu2sys(111, "chdir to ", argv[1]) ; - if (pivot_root(".", argv[2]) < 0) strerr_diefu1sys(111, "pivot_root") ; - if (chroot(".") < 0) strerr_diefu1sys(111, "chroot") ; - xexec(argv+3) ; -} |