Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 145 for chroot1 (0.23 sec)

  1. build/build-image/rsyncd.sh

    k8s:${PASSWORD}
    EOF
    chmod go= "${SECRETS}"
    
    USER_CONFIG=
    if [[ "$(id -u)" == "0" ]]; then
      USER_CONFIG="  uid = 0"$'\n'"  gid = 0"
    fi
    
    cat <<EOF >"${CONFFILE}"
    pid file = ${PIDFILE}
    use chroot = no
    log file = /dev/stdout
    reverse lookup = no
    munge symlinks = no
    port = 8730
    [k8s]
      numeric ids = true
      $USER_CONFIG
      hosts deny = *
      hosts allow = ${ALLOW} ${ALLOW_HOST-}
      auth users = k8s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/cmd.go

    		`),
    		SilenceErrors: true,
    		SilenceUsage:  true,
    		PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
    			if rootfsPath != "" {
    				if err := kubeadmutil.Chroot(rootfsPath); err != nil {
    					return err
    				}
    			}
    			return nil
    		},
    	}
    
    	cmds.ResetFlags()
    
    	cmds.AddCommand(newCmdCertsUtility(out))
    	cmds.AddCommand(newCmdCompletion(out, ""))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/classpath/impl/DefaultClasspathFingerprinterTest.groovy

            then:
            fileCollectionFingerprint.empty
        }
    
        def "root elements are unsorted, non-root elements are sorted amongst themselves"() {
            def rootFile1 = file("root1.txt") << "root1"
            def rootDir = file("dir").createDir()
            rootDir.file("file1.txt") << "file1"
            rootDir.file("file2.txt") << "file2"
            def rootFile2 = file("root2.txt") << "root2"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. src/os/exec_posix.go

    var (
    	Interrupt Signal = syscall.SIGINT
    	Kill      Signal = syscall.SIGKILL
    )
    
    func startProcess(name string, argv []string, attr *ProcAttr) (p *Process, err error) {
    	// If there is no SysProcAttr (ie. no Chroot or changed
    	// UID/GID), double-check existence of the directory we want
    	// to chdir into. We can make the error clearer this way.
    	if attr != nil && attr.Sys == nil && attr.Dir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/options/generic.go

    func AddKubeadmOtherFlags(flagSet *pflag.FlagSet, rootfsPath *string) {
    	flagSet.StringVar(
    		rootfsPath, "rootfs", *rootfsPath,
    		"The path to the 'real' host root filesystem. This will cause kubeadm to chroot into the provided path.",
    	)
    }
    
    // AddPatchesFlag adds the --patches flag to the given flagset
    func AddPatchesFlag(fs *pflag.FlagSet, patchesDir *string) {
    	const usage = `Path to a directory that contains files named ` +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/io/fs/sub.go

    // accesses outside "/prefix", because the implementation of [os.DirFS]
    // does not check for symbolic links inside "/prefix" that point to
    // other directories. That is, [os.DirFS] is not a general substitute for a
    // chroot-style security mechanism, and Sub does not change that fact.
    func Sub(fsys FS, dir string) (FS, error) {
    	if !ValidPath(dir) {
    		return nil, &PathError{Op: "sub", Path: dir, Err: ErrInvalid}
    	}
    	if dir == "." {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/OutputFileChangesTest.groovy

                missing("root")
            ) == [removed("root")]
        }
    
        def "deep addition"() {
            expect:
            changes(
                directory("root1", [
                    regularFile("root1/one", 0x1234)
                ]),
                directory("root2", [
                    regularFile("root2/one", 0x1234),
                    regularFile("root2/two", 0x2345)
                ])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCacheTest.groovy

        }
    
        def "parents are respected"() {
            expect:
            def root1 = classLoader(classPath("root1"))
            def root2 = classLoader(classPath("root2"))
            cache.get(id1, classPath("c1"), root1, null) != cache.get(id2, classPath("c1"), root2, null)
        }
    
        def "null parents are respected"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 19:34:48 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_EXECVE               = 59  // { int|sys||execve(const char *path, char * const *argp, char * const *envp); }
    	SYS_UMASK                = 60  // { mode_t|sys||umask(mode_t newmask); }
    	SYS_CHROOT               = 61  // { int|sys||chroot(const char *path); }
    	SYS_VFORK                = 66  // { int|sys||vfork(void); }
    	SYS_SBRK                 = 69  // { int|sys||sbrk(intptr_t incr); }
    	SYS_SSTK                 = 70  // { int|sys||sstk(int incr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_netbsd_arm.go

    	SYS_EXECVE               = 59  // { int|sys||execve(const char *path, char * const *argp, char * const *envp); }
    	SYS_UMASK                = 60  // { mode_t|sys||umask(mode_t newmask); }
    	SYS_CHROOT               = 61  // { int|sys||chroot(const char *path); }
    	SYS_VFORK                = 66  // { int|sys||vfork(void); }
    	SYS_SBRK                 = 69  // { int|sys||sbrk(intptr_t incr); }
    	SYS_SSTK                 = 70  // { int|sys||sstk(int incr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
Back to top