File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
subsonic-installer-debian/src/etc/init.d
subsonic-installer-rpm/src/etc/init.d
subsonic-main/src/test/java/net/sourceforge/subsonic Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ do_start()
63
63
touch $PIDFILE
64
64
chown $SUBSONIC_USER $PIDFILE
65
65
[ -e /var/booksonic ] && chown -R $SUBSONIC_USER /var/booksonic
66
- [ -e /tmp/subsonic ] && chown -R $SUBSONIC_USER /tmp/subsonic
66
+ [ -e /tmp/booksonic ] && chown -R $SUBSONIC_USER /tmp/booksonic
67
67
68
68
start-stop-daemon --start -c $SUBSONIC_USER --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_ARGS || return 2
69
69
}
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ do_start()
55
55
touch $PIDFILE
56
56
chown $SUBSONIC_USER $PIDFILE
57
57
[ -e /var/booksonic ] && chown -R $SUBSONIC_USER /var/booksonic
58
- [ -e /tmp/subsonic ] && chown -R $SUBSONIC_USER /tmp/subsonic
58
+ [ -e /tmp/booksonic ] && chown -R $SUBSONIC_USER /tmp/booksonic
59
59
60
60
echo $" Starting $NAME ..."
61
61
su -c " $DAEMON $DAEMON_ARGS " $SUBSONIC_USER
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ protected JdbcTemplate getJdbcTemplate() {
61
61
}
62
62
63
63
private static void deleteDatabase () {
64
- File subsonicHome = new File ("/tmp/subsonic " );
64
+ File subsonicHome = new File ("/tmp/booksonic " );
65
65
File dbHome = new File (subsonicHome , "db" );
66
66
System .setProperty ("subsonic.home" , subsonicHome .getPath ());
67
67
Original file line number Diff line number Diff line change 32
32
*/
33
33
public class SettingsServiceTestCase extends TestCase {
34
34
35
- private static final File SUBSONIC_HOME = new File ("/tmp/subsonic " );
35
+ private static final File SUBSONIC_HOME = new File ("/tmp/booksonic " );
36
36
37
37
private SettingsService settingsService ;
38
38
You can’t perform that action at this time.
0 commit comments