Skip to content

Commit 6baebff

Browse files
committed
repo-wide: changes for 0.7.0.x [2]
- change the shebang - bump @Version
1 parent d77b09a commit 6baebff

7 files changed

Lines changed: 13 additions & 19 deletions

File tree

usr/share/66/service/fancontrol

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[main]
22
@type = classic
33
@description = "fancontrol daemon"
4-
@version = 0.0.2
4+
@version = 0.0.1
55
@user = ( root )
66

77
[start]
88
@build = custom
9-
@shebang = "/bin/sh"
10-
@execute = ( [ ! -e /etc/fancontrol ] && exit 1
9+
@execute = (#!/bin/sh [ ! -e /etc/fancontrol ] && exit 1
1110
exec fancontrol /etc/fancontrol 2>&1 )

usr/share/66/service/rsyncd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[main]
22
@type = classic
33
@description = "rsync daemon"
4-
@version = 0.0.2
4+
@version = 0.0.3
55
@user = ( root )
66

77
[start]
88
@build = custom
9-
@shebang = "/bin/sh"
10-
@execute = ( exec 2>&1
9+
10+
@execute = (#!/bin/sh exec 2>&1
1111
[ ! -e /etc/rsyncd.conf ] && exit 1
1212
exec rsync --daemon --no-detach )

usr/share/66/service/snooze-daily

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
[main]
22
@type = classic
3-
@version = 0.0.1
3+
@version = 0.0.2
44
@description = "snooze-daily daemon"
55
@user = ( root )
66

77
[start]
88
@build = custom
9-
@shebang = "/bin/sh"
10-
@execute = (
9+
@execute = (#!/bin/sh
1110
exec 2>&1
1211
execl-toc -d /var/cache/snooze
1312
exec snooze -s 1d -t /var/cache/snooze/daily -- sh -c \

usr/share/66/service/snooze-hourly

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
[main]
22
@type = classic
3-
@version = 0.0.1
3+
@version = 0.0.2
44
@description = "snooze-hourly daemon"
55
@user = ( root )
66

77
[start]
88
@build = custom
9-
@shebang = "/bin/sh"
10-
@execute = (
9+
@execute = (#!/bin/sh
1110
exec 2>&1
1211
execl-toc -d /var/cache/snooze
1312
exec snooze -H \* -s 1h -t /var/cache/snooze/hourly -- sh -c \
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66

77
[start]
88
@build = custom
9-
@shebang = "/bin/sh"
10-
@execute = (
9+
@execute = (#!/bin/sh
1110
exec 2>&1
1211
execl-toc -d /var/cache/snooze
1312
exec snooze -d 1 -s 28d -t /var/cache/snooze/monthly -- sh -c \

usr/share/66/service/snooze-weekly

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66

77
[start]
88
@build = custom
9-
@shebang = "/bin/sh"
10-
@execute = (
9+
@execute = (#!/bin/sh
1110
exec 2>&1
1211
execl-toc -d /var/cache/snooze
1312
exec snooze -w 0 -s 7d -t /var/cache/snooze/weekly -- sh -c \

usr/share/66/service/wpa_supplicant/wpa_supplicant

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
[main]
22
@type = classic
33
@description = "WPA/WPA2/IEEE 802.1X Supplicant daemon"
4-
@version = 0.0.1
4+
@version = 0.0.2
55
@user = ( root )
66
@hiercopy = ( data )
77

88
[start]
99
@build = custom
10-
@shebang = "/bin/sh"
11-
@execute = (
10+
@execute = (#!/bin/sh
1211
exec 2>&1
1312
if [ -n "$CONF_FILE" ]; then
1413
${OPTS:=-M -c ${CONF_FILE:-/etc/wpa_supplicant/wpa_supplicant.conf} ${WPA_INTERFACE:+-i ${WPA_INTERFACE}} ${DRIVER:+-D ${DRIVER}} -s}

0 commit comments

Comments
 (0)