Home
last modified time | relevance | path

Searched refs:subp (Results 126 – 150 of 1398) sorted by relevance

12345678910>>...56

/dports/net/cloud-init/cloud-init-21.4/cloudinit/distros/
H A D__init__.py32 from cloudinit import subp
274 subp.subp(['hostname', hostname])
275 except subp.ProcessExecutionError:
527 subp.subp(useradd_cmd, logstring=log_useradd_cmd)
547 (out, err) = subp.subp(create_user_cmd, logstring=create_user_cmd,
649 subp.subp(cmd)
656 subp.subp(['passwd', '--expire', user])
672 subp.subp(cmd, pass_string, logstring="chpasswd for %s" % user)
769 subp.subp(group_add_cmd)
782 subp.subp(['usermod', '-a', '-G', name, member])
[all …]
H A Ddebian.py16 from cloudinit import subp
191 func=subp.subp,
208 subp.which(cmd[0]))):
263 subp.subp(
285 subp.subp(['locale-gen', locale], capture=False)
/dports/net/cloud-init/cloud-init-21.4/cloudinit/net/
H A Dnetplan.py16 from cloudinit import subp
173 tpath = subp.target_path(target, "etc/netplan/00-snapd-config.yaml")
180 derived = [subp.target_path(target, f) for f in (
212 info_blob, _err = subp.subp(self.NETPLAN_INFO, capture=True)
215 except subp.ProcessExecutionError:
227 fpnplan = os.path.join(subp.target_path(target), self.netplan_path)
248 subp.subp(self.NETPLAN_GENERATE, capture=True)
262 subp.subp(cmd, capture=True)
415 if not subp.which(p, search=search, target=target):
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/build/android/gyp/
H A Daar.py174 subp = command_parsers.add_parser(
176 _AddCommonArgs(subp)
177 subp.add_argument('--output', help='Output file.', default='-')
179 subp = command_parsers.add_parser('extract', help='Extracts the .aar')
180 _AddCommonArgs(subp)
181 subp.add_argument(
186 subp.add_argument(
191 subp.add_argument(
/dports/multimedia/ogmrip/ogmrip-1.0.1/data/
H A Dprofiles.xml.in40 <key>subp/charset</key>
46 <key>subp/codec</key>
52 <key>subp/spell_check</key>
58 <key>subp/newline</key>
64 <key>subp/forced</key>
222 <key>subp/charset</key>
228 <key>subp/codec</key>
240 <key>subp/newline</key>
246 <key>subp/forced</key>
410 <key>subp/codec</key>
[all …]
/dports/devel/llvm80/llvm-8.0.1.src/test/MC/AArch64/
H A Darmv8.5a-mte-error.s682 subp sp, x2, x3 label
683 subp w0, x1, x2 label
684 subp x0, w1, x2 label
685 subp x0, x1, w2 label
689 subp #1, x1, x2 label
690 subp x0, #1, x2 label
691 subp x0, x1, #1 label
726 subp x0, x1, x2, x3 label
734 subp label
737 subp x0 label
[all …]
/dports/audio/re/re-0.5.8/src/sipevent/
H A Dsubscribe.c370 if (!subp || !sock || !event || !cuser) in sipsub_alloc()
437 *subp = sub; in sipsub_alloc()
482 err = sipsub_alloc(subp, sock, false, NULL, uri, from_name, from_uri, in sipevent_subscribe()
523 err = sipsub_alloc(subp, sock, false, dlg, NULL, NULL, NULL, in sipevent_dsubscribe()
555 int sipevent_refer(struct sipsub **subp, struct sipevent_sock *sock, in sipevent_refer() argument
568 err = sipsub_alloc(subp, sock, true, NULL, uri, from_name, from_uri, in sipevent_refer()
595 int sipevent_drefer(struct sipsub **subp, struct sipevent_sock *sock, in sipevent_drefer() argument
605 err = sipsub_alloc(subp, sock, true, dlg, NULL, NULL, NULL, in sipevent_drefer()
615 int sipevent_fork(struct sipsub **subp, struct sipsub *osub, in sipevent_fork() argument
624 if (!subp || !osub || !msg) in sipevent_fork()
[all …]
/dports/net/cloud-init/cloud-init-21.4/cloudinit/config/
H A Dcc_resizefs.py19 from cloudinit import subp
101 subp.subp(['growfs', '-N', devpth])
102 except subp.ProcessExecutionError as e:
277 subp.subp(resize_cmd)
278 except subp.ProcessExecutionError:
H A Dcc_rh_subscription.py42 from cloudinit import subp
177 except subp.ProcessExecutionError:
204 except subp.ProcessExecutionError as e:
227 except subp.ProcessExecutionError as e:
250 except subp.ProcessExecutionError as e:
268 except subp.ProcessExecutionError as e:
345 except subp.ProcessExecutionError as e:
418 except subp.ProcessExecutionError as e:
440 return subp.subp(['subscription-manager'] + cmd,
H A Dcc_fan.py42 from cloudinit import subp
59 except subp.ProcessExecutionError as e:
71 except subp.ProcessExecutionError as e:
89 if not subp.which('fanctl'):
H A Dcc_apt_configure.py21 from cloudinit import subp
463 if not (subp.which('apt-get') or subp.which('apt')):
511 subp.subp(['debconf-set-selections'], data=selections, target=target,
536 subp.subp(['dpkg-reconfigure', '--frontend=noninteractive'] +
608 pre = subp.target_path(target, APT_LISTS)
736 except subp.ProcessExecutionError:
825 subp.subp(["add-apt-repository", source], target=target)
826 except subp.ProcessExecutionError:
831 sourcefn = subp.target_path(target, ent['filename'])
1173 except subp.ProcessExecutionError:
[all …]
H A Dcc_ssh_import_id.py34 from cloudinit import subp
105 subp.subp(cmd, capture=False)
106 except subp.ProcessExecutionError as exc:
H A Dcc_mounts.py72 from cloudinit import subp
261 subp.subp(cmd, capture=True)
262 except subp.ProcessExecutionError as e:
278 except subp.ProcessExecutionError:
285 subp.subp(['mkswap', fname])
286 except subp.ProcessExecutionError:
554 subp.subp(cmd)
556 except subp.ProcessExecutionError:
/dports/net/cloud-init/cloud-init-21.4/cloudinit/
H A Dutil.py77 out, _ = subp.subp(['dpkg', '--print-architecture'], capture=True,
89 out, _ = subp.subp(['lsb_release', '--all'], capture=True,
1295 (out, _err) = subp.subp(cmd, rcs=[0, 2])
1331 out, _ = subp.subp(cmd, capture=True, decode="replace")
1651 subp.subp(umount_cmd)
1662 (mountoutput, _err) = subp.subp("mount")
2072 subp.subp(cmd)
2096 out, _ = subp.subp(cmd)
2349 (mnt_list, err) = subp.subp(['mount', '-p'])
2380 (mountoutput, _err) = subp.subp(['mount'])
[all …]
/dports/net/cloud-init/cloud-init-21.4/cloudinit/sources/helpers/vmware/imc/
H A Dconfig_nic.py13 from cloudinit import subp
77 output, _err = subp.subp(cmd)
252 subp.subp(["pkill", "dhclient"], rcs=[0, 1])
253 subp.subp(["rm", "-f", "/var/lib/dhcp/*"])
/dports/net/cloud-init/cloud-init-21.4/cloudinit/handlers/
H A Dboot_hook.py15 from cloudinit import subp
52 subp.subp([filepath], env=env)
53 except subp.ProcessExecutionError:
/dports/sysutils/cfengine-devel/core-d08ae9eff/contrib/cf-remote/cf_remote/
H A Dmain.py30 subp = ap.add_subparsers(dest="command",
33 sp = subp.add_parser("info", help="Get info about the given hosts")
36 sp = subp.add_parser("install", help="Install CFEngine on the given hosts")
53 sp = subp.add_parser("uninstall", help="Install CFEngine on the given hosts")
58 sp = subp.add_parser("packages", help="Get info about available packages")
68 sp = subp.add_parser("download", help="Download CFEngine packages")
78 sp = subp.add_parser("sudo",
84 sp = subp.add_parser("scp", help="Copy the given file to the given hosts")
88 sp = subp.add_parser("spawn", help="Spawn hosts in the clouds")
107 dp = subp.add_parser("destroy", help="Destroy hosts spawned in the clouds")
[all …]
/dports/net/cloud-init/cloud-init-21.4/cloudinit/tests/
H A Dtest_gpg.py7 from cloudinit import subp
19 my_exc = subp.ProcessExecutionError(
29 m_subp.side_effect = subp.ProcessExecutionError(
39 m_subp.side_effect = subp.ProcessExecutionError(
/dports/net/cloud-init/cloud-init-21.4/tests/unittests/test_handler/
H A Dtest_handler_apt_configure_sources_list_v3.py14 from cloudinit import subp
94 self.subp = subp.subp
214 with mock.patch.object(subp, 'subp', self.subp):
/dports/audio/muse-sequencer/muse-4.0.0/src/muse/components/
H A Droutepopup.cpp190 act->setMenu(subp); in addMenuItem()
258 lb->addMenu(subp); in addMenuItem()
472 wa->setMenu(subp); in addMidiPorts()
613 wa->setMenu(subp); in addMidiPorts()
665 subp->setTitle(md->name()); in addMidiPorts()
685 pup->addMenu(subp); in addMidiPorts()
1003 lb->addMenu(subp); in addJackPorts()
3534 addMenu(subp); in prepare()
3559 addMenu(subp); in prepare()
3725 addMenu(subp); in prepare()
[all …]
/dports/net/cloud-init/cloud-init-21.4/cloudinit/sources/helpers/
H A Dazure.py22 from cloudinit import subp
115 out, _ = subp.subp(['/bin/systemctl',
128 except subp.ProcessExecutionError as e:
138 out, _ = subp.subp(['/bin/systemctl', 'show',
150 except subp.ProcessExecutionError as e:
251 out, _ = subp.subp(['dmesg'], decode=False, capture=True)
502 subp.subp([
519 result, _ = subp.subp(cmd, data=cert)
526 ssh_key, _ = subp.subp(keygen_cmd, data=pub_key)
559 out, _ = subp.subp(
[all …]
/dports/cad/verilator/verilator-4.216/src/
H A DV3WidthSel.cpp218 AstNode* subp = rhsp; in visit() local
220 subp = newSubNeg(subp, fromRange.lo()); in visit()
222 AstArraySel* const newp = new AstArraySel(nodep->fileline(), fromp, subp); in visit()
229 AstNode* subp = rhsp; in visit() local
231 subp = newSubNeg(fromRange.hi(), subp); in visit()
233 subp = newSubNeg(subp, fromRange.lo()); in visit()
243 new AstConst(nodep->fileline(), AstConst::Unsized32(), elwidth), subp), in visit()
253 AstNode* const subp = rhsp; in visit() local
254 AstAssocSel* const newp = new AstAssocSel(nodep->fileline(), fromp, subp); in visit()
261 AstNode* const subp = rhsp; in visit() local
[all …]
/dports/net/cloud-init/cloud-init-21.4/cloudinit/analyze/
H A Dshow.py14 from cloudinit import subp
146 self.failure = self.subp()
148 def subp(self): member in SystemctlReader
156 value, err = subp.subp(self.args, capture=True)
216 data, _ = subp.subp(['dmesg'], capture=True)
/dports/mail/dovecot/dovecot-2.3.17/src/lib-test/
H A Dtest-subprocess.c36 struct test_subprocess *subp; in test_subprocess_free_all() local
38 array_foreach_elem(&test_subprocesses, subp) in test_subprocess_free_all()
39 i_free(subp); in test_subprocess_free_all()
134 static void test_subprocess_kill_forced(struct test_subprocess *subp) in test_subprocess_kill_forced() argument
136 i_assert(subp->pid > 0); in test_subprocess_kill_forced()
137 (void)kill(subp->pid, SIGKILL); in test_subprocess_kill_forced()
138 (void)waitpid(subp->pid, NULL, 0); in test_subprocess_kill_forced()
/dports/net/cloud-init/cloud-init-21.4/cloudinit/cmd/devel/tests/
H A Dtest_logs.py11 from cloudinit.subp import subp
67 subp(cmd) # Pass through tar cmd so we can check output
80 subp(['tar', 'zxvf', output_tarfile, '-C', self.new_root])
144 subp(cmd) # Pass through tar cmd so we can check output
158 subp(['tar', 'zxvf', output_tarfile, '-C', self.new_root])

12345678910>>...56