~ubuntu-branches/debian/jessie/systemd/jessie

« back to all changes in this revision

Viewing changes to src/load-fragment-gperf.gperf.m4

  • Committer: Package Import Robot
  • Author(s): Tollef Fog Heen, Tollef Fog Heen, Michael Biebl
  • Date: 2012-04-03 19:59:17 UTC
  • mfrom: (1.1.10) (6.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20120403195917-l532urrbg4pkreas
Tags: 44-1
[ Tollef Fog Heen ]
* New upstream version.
  - Backport 3492207: journal: PAGE_SIZE is not known on ppc and other
    archs
  - Backport 5a2a2a1: journal: react with immediate rotation to a couple
    of more errors
  - Backport 693ce21: util: never follow symlinks in rm_rf_children()
    Fixes CVE-2012-1174, closes: #664364
* Drop output message from init-functions hook, it's pointless.
* Only rmdir /lib/init/rw if it exists.
* Explicitly order debian-fixup before sysinit.target to prevent a
  possible race condition with the creation of sockets.  Thanks to
  Michael Biebl for debugging this.
* Always restart the initctl socket on upgrades, to mask sysvinit
  removing it.

[ Michael Biebl ]
* Remove workaround for non-interactive sessions from pam config again.
* Create compat /dev/initctl symlink in case we are upgrading from a system
  running a newer version of sysvinit (using /run/initctl) and sysvinit is
  replaced with systemd-sysv during the upgrade. Closes: #663219
* Install new man pages.
* Build-Depend on valac (>= 0.12) instead of valac-0.12. Closes: #663323

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
$1.KillMode,                     config_parse_kill_mode,             0,                             offsetof($1, exec_context.kill_mode)
86
86
$1.KillSignal,                   config_parse_kill_signal,           0,                             offsetof($1, exec_context.kill_signal)
87
87
$1.SendSIGKILL,                  config_parse_bool,                  0,                             offsetof($1, exec_context.send_sigkill)
 
88
$1.IgnoreSIGPIPE,                config_parse_bool,                  0,                             offsetof($1, exec_context.ignore_sigpipe)
88
89
$1.UtmpIdentifier,               config_parse_unit_string_printf,    0,                             offsetof($1, exec_context.utmp_id)
89
 
$1.ControlGroupModify,           config_parse_bool,                  0,                             offsetof($1, exec_context.control_group_modify)'
 
90
$1.ControlGroupModify,           config_parse_bool,                  0,                             offsetof($1, exec_context.control_group_modify)
 
91
$1.ControlGroupPersistent,       config_parse_tristate,              0,                             offsetof($1, exec_context.control_group_persistent)'
90
92
)m4_dnl
91
93
Unit.Names,                      config_parse_unit_names,            0,                             0
92
 
Unit.Description,                config_parse_unit_string_printf,    0,                             offsetof(Meta, description)
 
94
Unit.Description,                config_parse_unit_string_printf,    0,                             offsetof(Unit, description)
93
95
Unit.Requires,                   config_parse_unit_deps,             UNIT_REQUIRES,                 0
94
96
Unit.RequiresOverridable,        config_parse_unit_deps,             UNIT_REQUIRES_OVERRIDABLE,     0
95
97
Unit.Requisite,                  config_parse_unit_deps,             UNIT_REQUISITE,                0
100
102
Unit.Before,                     config_parse_unit_deps,             UNIT_BEFORE,                   0
101
103
Unit.After,                      config_parse_unit_deps,             UNIT_AFTER,                    0
102
104
Unit.OnFailure,                  config_parse_unit_deps,             UNIT_ON_FAILURE,               0
103
 
Unit.StopWhenUnneeded,           config_parse_bool,                  0,                             offsetof(Meta, stop_when_unneeded)
104
 
Unit.RefuseManualStart,          config_parse_bool,                  0,                             offsetof(Meta, refuse_manual_start)
105
 
Unit.RefuseManualStop,           config_parse_bool,                  0,                             offsetof(Meta, refuse_manual_stop)
106
 
Unit.AllowIsolate,               config_parse_bool,                  0,                             offsetof(Meta, allow_isolate)
107
 
Unit.DefaultDependencies,        config_parse_bool,                  0,                             offsetof(Meta, default_dependencies)
108
 
Unit.OnFailureIsolate,           config_parse_bool,                  0,                             offsetof(Meta, on_failure_isolate)
109
 
Unit.IgnoreOnIsolate,            config_parse_bool,                  0,                             offsetof(Meta, ignore_on_isolate)
110
 
Unit.IgnoreOnSnapshot,           config_parse_bool,                  0,                             offsetof(Meta, ignore_on_snapshot)
111
 
Unit.JobTimeoutSec,              config_parse_usec,                  0,                             offsetof(Meta, job_timeout)
 
105
Unit.PropagateReloadTo,          config_parse_unit_deps,             UNIT_PROPAGATE_RELOAD_TO,      0
 
106
Unit.PropagateReloadFrom,        config_parse_unit_deps,             UNIT_PROPAGATE_RELOAD_FROM,    0
 
107
Unit.StopWhenUnneeded,           config_parse_bool,                  0,                             offsetof(Unit, stop_when_unneeded)
 
108
Unit.RefuseManualStart,          config_parse_bool,                  0,                             offsetof(Unit, refuse_manual_start)
 
109
Unit.RefuseManualStop,           config_parse_bool,                  0,                             offsetof(Unit, refuse_manual_stop)
 
110
Unit.AllowIsolate,               config_parse_bool,                  0,                             offsetof(Unit, allow_isolate)
 
111
Unit.DefaultDependencies,        config_parse_bool,                  0,                             offsetof(Unit, default_dependencies)
 
112
Unit.OnFailureIsolate,           config_parse_bool,                  0,                             offsetof(Unit, on_failure_isolate)
 
113
Unit.IgnoreOnIsolate,            config_parse_bool,                  0,                             offsetof(Unit, ignore_on_isolate)
 
114
Unit.IgnoreOnSnapshot,           config_parse_bool,                  0,                             offsetof(Unit, ignore_on_snapshot)
 
115
Unit.JobTimeoutSec,              config_parse_usec,                  0,                             offsetof(Unit, job_timeout)
112
116
Unit.ConditionPathExists,        config_parse_unit_condition_path,   CONDITION_PATH_EXISTS,         0
113
117
Unit.ConditionPathExistsGlob,    config_parse_unit_condition_path,   CONDITION_PATH_EXISTS_GLOB,    0
114
118
Unit.ConditionPathIsDirectory,   config_parse_unit_condition_path,   CONDITION_PATH_IS_DIRECTORY,   0
131
135
Service.ExecStopPost,            config_parse_exec,                  SERVICE_EXEC_STOP_POST,        offsetof(Service, exec_command)
132
136
Service.RestartSec,              config_parse_usec,                  0,                             offsetof(Service, restart_usec)
133
137
Service.TimeoutSec,              config_parse_usec,                  0,                             offsetof(Service, timeout_usec)
 
138
Service.WatchdogSec,             config_parse_usec,                  0,                             offsetof(Service, watchdog_usec)
 
139
Service.StartLimitInterval,      config_parse_usec,                  0,                             offsetof(Service, start_limit.interval)
 
140
Service.StartLimitBurst,         config_parse_unsigned,              0,                             offsetof(Service, start_limit.burst)
 
141
Service.StartLimitAction,        config_parse_start_limit_action,    0,                             offsetof(Service, start_limit_action)
134
142
Service.Type,                    config_parse_service_type,          0,                             offsetof(Service, type)
135
143
Service.Restart,                 config_parse_service_restart,       0,                             offsetof(Service, restart)
136
144
Service.PermissionsStartOnly,    config_parse_bool,                  0,                             offsetof(Service, permissions_start_only)
168
176
Socket.MaxConnections,           config_parse_unsigned,              0,                             offsetof(Socket, max_connections)
169
177
Socket.KeepAlive,                config_parse_bool,                  0,                             offsetof(Socket, keep_alive)
170
178
Socket.Priority,                 config_parse_int,                   0,                             offsetof(Socket, priority)
171
 
Socket.ReceiveBuffer,            config_parse_size,                  0,                             offsetof(Socket, receive_buffer)
172
 
Socket.SendBuffer,               config_parse_size,                  0,                             offsetof(Socket, send_buffer)
 
179
Socket.ReceiveBuffer,            config_parse_bytes_size,            0,                             offsetof(Socket, receive_buffer)
 
180
Socket.SendBuffer,               config_parse_bytes_size,            0,                             offsetof(Socket, send_buffer)
173
181
Socket.IPTOS,                    config_parse_ip_tos,                0,                             offsetof(Socket, ip_tos)
174
182
Socket.IPTTL,                    config_parse_int,                   0,                             offsetof(Socket, ip_ttl)
175
183
Socket.Mark,                     config_parse_int,                   0,                             offsetof(Socket, mark)
176
 
Socket.PipeSize,                 config_parse_size,                  0,                             offsetof(Socket, pipe_size)
 
184
Socket.PipeSize,                 config_parse_bytes_size,            0,                             offsetof(Socket, pipe_size)
177
185
Socket.FreeBind,                 config_parse_bool,                  0,                             offsetof(Socket, free_bind)
178
186
Socket.Transparent,              config_parse_bool,                  0,                             offsetof(Socket, transparent)
179
187
Socket.Broadcast,                config_parse_bool,                  0,                             offsetof(Socket, broadcast)
 
188
Socket.PassCredentials,          config_parse_bool,                  0,                             offsetof(Socket, pass_cred)
 
189
Socket.PassSecurity,             config_parse_bool,                  0,                             offsetof(Socket, pass_sec)
180
190
Socket.TCPCongestion,            config_parse_string,                0,                             offsetof(Socket, tcp_congestion)
181
191
Socket.MessageQueueMaxMessages,  config_parse_long,                  0,                             offsetof(Socket, mq_maxmsg)
182
192
Socket.MessageQueueMessageSize,  config_parse_long,                  0,                             offsetof(Socket, mq_msgsize)
209
219
Path.PathExists,                 config_parse_path_spec,             0,                             0
210
220
Path.PathExistsGlob,             config_parse_path_spec,             0,                             0
211
221
Path.PathChanged,                config_parse_path_spec,             0,                             0
 
222
Path.PathModified,               config_parse_path_spec,             0,                             0
212
223
Path.DirectoryNotEmpty,          config_parse_path_spec,             0,                             0
213
224
Path.Unit,                       config_parse_path_unit,             0,                             0
214
225
Path.MakeDirectory,              config_parse_bool,                  0,                             offsetof(Path, make_directory)