Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

systemd.scope(5) [centos man page]

SYSTEMD.SCOPE(5)						   systemd.scope						  SYSTEMD.SCOPE(5)

NAME
systemd.scope - Scope unit configuration SYNOPSIS
scope.scope DESCRIPTION
Scope units are not configured via unit configuration files, but are only created programmatically using the bus interfaces of systemd. They are named similar to filenames. A unit whose name ends in ".scope" refers to a scope unit. Scopes units manage a set of system processes. Unlike service units, scope units manage externally created processes, and do not fork off processes on its own. The main purpose of scope units is grouping worker processes of a system service for organization and for managing resources. systemd-run --scope may be used to easily launch a command in a new scope unit from the command line. See the New Control Group Interfaces[1] for an introduction how to make use of scope units from programs. Unless DefaultDependencies=false is used, scope units will implicitly have dependencies of type Conflicts= and Before= on shutdown.target. These ensure that scope units are removed prior to system shutdown. Only scope units involved with early boot or late system shutdown should disable this option. SEE ALSO
systemd(1), systemd-run(1), systemd.unit(5), systemd.resource-control(5), systemd.service(5), systemd.directives(7). NOTES
1. New Control Group Interfaces http://www.freedesktop.org/wiki/Software/systemd/ControlGroupInterface/ systemd 208 SYSTEMD.SCOPE(5)

Check Out this Related Man Page

SYSTEMD.SCOPE(5)						   systemd.scope						  SYSTEMD.SCOPE(5)

NAME
systemd.scope - Scope unit configuration SYNOPSIS
scope.scope DESCRIPTION
Scope units are not configured via unit configuration files, but are only created programmatically using the bus interfaces of systemd. They are named similar to filenames. A unit whose name ends in ".scope" refers to a scope unit. Scopes units manage a set of system processes. Unlike service units, scope units manage externally created processes, and do not fork off processes on its own. The main purpose of scope units is grouping worker processes of a system service for organization and for managing resources. systemd-run --scope may be used to easily launch a command in a new scope unit from the command line. See the New Control Group Interfaces[1] for an introduction on how to make use of scope units from programs. IMPLICIT DEPENDENCIES
Implicit dependencies may be added as result of resource control parameters as documented in systemd.resource-control(5). DEFAULT DEPENDENCIES
The following dependencies are added unless DefaultDependencies=no is set: o Scope units will automatically have dependencies of type Conflicts= and Before= on shutdown.target. These ensure that scope units are removed prior to system shutdown. Only scope units involved with early boot or late system shutdown should disable DefaultDependencies= option. SEE ALSO
systemd(1), systemd-run(1), systemd.unit(5), systemd.resource-control(5), systemd.service(5), systemd.directives(7). NOTES
1. New Control Group Interfaces https://www.freedesktop.org/wiki/Software/systemd/ControlGroupInterface/ systemd 237 SYSTEMD.SCOPE(5)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Working with field increments

I have a new challenge that I need some help with. Each morning I have two files that contain working units and failed units that I join together to form file3 which is FTP to server for comparison against billing system. My problem, I would like to take joined data in file3 and add a field... (2 Replies)
Discussion started by: greengrass
2 Replies

2. Shell Programming and Scripting

Variables scope.

Hi , I'm trying to change the variable value in a while loop , however its not working it seems that the problem with subshells while reading the file. #!/bin/sh FLAG=0; cat filename | while read data do FLAG=1; done echo $FLAG Should display 1 instead displays 0 (13 Replies)
Discussion started by: dinjo_jo
13 Replies

3. Programming

C++ Bug probably scope problem

Hello, I have some difficulty to understand the scope of this program adapted from C++ book of D.S. Malik I am reading. I put the header and the main program as attachment to save space. My problem is the output:$ ./prog1009_die Line 4: Not yet rolled, die1 gets default number: 1 Line 5: Not... (5 Replies)
Discussion started by: yifangt
5 Replies

4. UNIX for Dummies Questions & Answers

Reverse command

Hi, Apologies in advance - out of my scope here but would love your help. I have the following command on destination system to copy data from one system to another: rcmd "cd data; find . -print|cpio -ocB" | dd ibs=5k obs=5k|cpio -iducmvB I am looking to run a once off command from the... (1 Reply)
Discussion started by: depn
1 Replies